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

:root {
  --scroll-progress: 0;
  --nav-alpha: 0;
  --nav-border: 0;
  --nav-blur: 0px;
  --nav-shadow: 0;
  --hero-brightness: 1.08;
  --hero-sat: 1.04;
  --site-bg-color: #08080a;
  --site-bg-image: none;
  --site-bg-position: 50% 50%;
  --site-bg-size: cover;
  --site-bg-opacity: 0;
  --photo-dim: 0;
  --profile-shift: 0px;
  --profile-opacity: 1;
}

@property --attention-scale {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

html {
  background: #08080a;
}

body {
  min-height: 100vh;
  background-color: var(--site-bg-color);
  background-image:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 182, 0.16), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(120, 202, 255, 0.14), transparent 28%),
    linear-gradient(var(--site-bg-color), var(--site-bg-color));
  font-family: -apple-system, BlinkMacSystemFont, Inter, Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--site-bg-image);
  background-position: var(--site-bg-position);
  background-size: var(--site-bg-size);
  background-repeat: no-repeat;
  opacity: var(--site-bg-opacity);
  filter: saturate(1.05) contrast(1.02);
}

.phone {
  --scroll-progress: 0;
  --nav-alpha: 0;
  --nav-border: 0;
  --nav-blur: 0px;
  --nav-shadow: 0;
  --hero-brightness: 1.08;
  --hero-sat: 1.04;
  --photo-dim: 0;
  --profile-shift: 0px;
  --profile-opacity: 1;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: #050505;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow: 0 0 80px rgba(0,0,0,0.55);
}

.hero {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(430px, 100vw);
  z-index: 1;
  height: 465px;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: -34px;
  transform: translateX(-50%);
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.12), transparent 26%),
    linear-gradient(145deg, rgba(34,38,45,0.92), rgba(8,9,12,0.98) 58%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,0.78) 0%,
      rgba(5,5,5,0.82) 58%,
      rgba(5,5,5,0.92) 100%);
  opacity: var(--photo-dim);
  pointer-events: none;
  transition: opacity 0.16s linear;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
  opacity: 0;
  filter: saturate(var(--hero-sat)) contrast(1) brightness(var(--hero-brightness));
  transform-origin: 50% 16%;
  transition: opacity 0.42s ease, filter 0.35s ease, transform 0.22s ease, transform-origin 0.22s ease;
}

.hero-img.is-hidden,
.hero.has-no-image .hero-img,
.hero.has-image-error .hero-img,
.hero.image-error .hero-img {
  display: none;
}

.hero.image-loaded .hero-img,
.hero-img.image-loaded {
  opacity: 1;
}

.hero.hero-image-loading .hero-placeholder,
.hero.image-loading .hero-placeholder {
  background:
    radial-gradient(circle at 44% 20%, rgba(255,255,255,0.16), transparent 25%),
    linear-gradient(145deg, rgba(37,42,50,0.96), rgba(8,9,12,0.99) 58%, #050505 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: background 0.35s ease;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.00) 46%,
      rgba(5,5,5,0.05) 56%,
      rgba(5,5,5,0.14) 66%,
      rgba(5,5,5,0.30) 76%,
      rgba(5,5,5,0.52) 86%,
      rgba(5,5,5,0.78) 94%,
      #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 210px;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,0.00) 0%,
      rgba(5,5,5,0.08) 20%,
      rgba(5,5,5,0.20) 38%,
      rgba(5,5,5,0.44) 58%,
      rgba(5,5,5,0.72) 78%,
      #050505 100%);
  z-index: 3;
  pointer-events: none;
}

.profile {
  position: relative;
  margin: 0 20px;
  padding-top: 226px;
  text-align: center;
  z-index: 20;
}

.profile h1,
.username,
.profile-meta,
.social-hint {
  opacity: 1;
  transform: none;
  transition: none;
}

.profile h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0,0,0,0.7);
}

.phone:not(.is-builder) .profile h1:empty,
.phone:not(.is-builder) .username:empty,
.phone:not(.is-builder) .profile-meta:empty,
.phone:not(.is-builder) .social-hint:empty,
.phone:not(.is-builder) .desktop-intro h2:empty {
  display: none;
}

.username {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0,0,0,0.75);
}

.profile-meta {
  margin-top: 7px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  font-weight: 650;
  text-shadow: 0 8px 24px rgba(0,0,0,0.75);
}

.socials-stage {
  margin: 18px auto 0;
  position: sticky;
  top: max(8px, env(safe-area-inset-top));
  z-index: 30;
  width: max-content;
  max-width: calc(100vw - 32px);
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(5,5,5,var(--nav-alpha));
  border: 1px solid rgba(255,255,255,var(--nav-border));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,calc(var(--nav-border) * 0.75)),
    0 12px 34px rgba(0,0,0,var(--nav-shadow)),
    0 0 10px rgba(255,105,180,calc(var(--nav-shadow) * 0.08));
  backdrop-filter: blur(var(--nav-blur)) saturate(1.25);
  -webkit-backdrop-filter: blur(var(--nav-blur)) saturate(1.25);
  overflow: hidden;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.phone:not(.is-socials-pinned) .socials-stage {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.phone:not(.is-socials-pinned) .socials a {
  box-shadow: none;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.socials:empty,
.socials.is-empty {
  display: none;
}

.socials-stage.is-empty {
  display: none;
}

.socials a {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,255,255,0.10);
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.social-icon {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.socials a.has-fallback-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.68);
  box-shadow: inset 6px -5px 0 -4px rgba(255,255,255,0.68);
}

.social-icon-link {
  width: 24px;
  height: 24px;
  border-radius: 0;
  object-fit: contain;
}

.socials a:hover {
  transform: translateY(-1px) scale(1.035);
  filter: saturate(1.25) brightness(1.12);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
}

.social-hint {
  width: fit-content;
  margin: 18px auto 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(5,5,5,0.46);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 8px 20px rgba(0,0,0,0.9);
  box-shadow: none;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 20;
}

.sections {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 42px;
  padding: 42px 30px 34px;
}

.sections.is-empty {
  display: none;
}

.sections::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -320px;
  bottom: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,0) 0%,
      rgba(5,5,5,0.66) 18%,
      rgba(5,5,5,0.94) 36%,
      #050505 52%,
      #050505 100%);
  opacity: var(--scroll-progress);
  transition: none;
  pointer-events: none;
}

.hint {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.desktop-intro {
  display: none;
}

.block {
  --card-position: center 24%;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 164px;
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.10), rgba(255,255,255,0.035) 36%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.045);
  background-size: cover;
  background-position: var(--card-position);
  border: 0;
  color: #fff !important;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -42px 70px rgba(0,0,0,0.38);
  transition: transform 0.32s ease, filter 0.32s ease, box-shadow 0.32s ease;
}

.block.card-image-loading,
.block.image-loading {
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.12), rgba(255,255,255,0.04) 38%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.045);
}

.block.card-image-loading::after,
.block.image-loading::after {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  animation: skeletonShimmer 1.45s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--card-image-x, 50%) var(--card-image-y, 50%);
  transform: scale(var(--card-image-scale, 1));
  transform-origin: var(--card-image-x, 50%) var(--card-image-y, 50%);
  opacity: 0;
  transition: opacity 0.38s ease, transform 0.22s ease, transform-origin 0.22s ease;
  pointer-events: none;
  user-select: none;
}

.block.image-loaded .card-bg,
.card-bg.image-loaded {
  opacity: 1;
}

.block.image-error .card-bg {
  display: none;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.045);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  animation: skeletonShimmer 1.45s ease-in-out infinite;
}

.social-placeholder {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
}

.card-placeholder {
  min-height: 164px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 42px rgba(0,0,0,0.12);
}

.phone.is-loading .hero-placeholder {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.14), transparent 28%),
    linear-gradient(145deg, rgba(34,38,45,0.96), rgba(10,11,15,0.98) 62%, #050505 100%);
}

.phone.is-loading .socials-stage {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

@keyframes skeletonShimmer {
  100% {
    transform: translateX(110%);
  }
}

.block::before,
.block::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  corner-shape: inherit;
  pointer-events: none;
}

.block::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.72) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 42%);
  opacity: 1;
}

.block.has-no-image {
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.10), rgba(255,255,255,0.035) 36%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
}

.block.has-no-image::before {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.66)),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 52%);
}

.block::after {
  inset: 1px;
  z-index: 3;
  background: transparent;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
  opacity: 1;
}

.block > * {
  position: relative;
  z-index: 1;
}

.block > .card-bg {
  position: absolute;
  z-index: 0;
}

.block > :not(.card-bg) {
  z-index: 2;
}

.block:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -42px 70px rgba(0,0,0,0.34),
    0 14px 34px rgba(0,0,0,0.22);
}

.block:hover::before {
  opacity: 0.88;
}

.block:hover::after {
  opacity: 1;
}

.block:nth-of-type(1) {
  --card-position: center 18%;
}

.block.is-animated-card {
  --attention-scale: 1;
  --card-anim-duration: 2.6s;
  --card-anim-move: 7px;
  --card-anim-rotate: 1.4deg;
  --card-anim-zoom: 0.02;
  animation: attentionFloat var(--card-anim-duration) ease-in-out infinite;
  transition:
    --attention-scale 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -42px 70px rgba(0,0,0,0.38);
}

.block.is-animated-card:hover {
  --attention-scale: 1.035;
}

.block:nth-of-type(2) {
  --card-position: center 34%;
}

.block:nth-of-type(3) {
  --card-position: center 52%;
}

.block:nth-of-type(4) {
  --card-position: center 70%;
}

.card-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.38));
  user-select: none;
  pointer-events: none;
}

.card-copy {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.label {
  display: block;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 850;
  text-align: center;
  text-shadow: 0 8px 20px rgba(0,0,0,0.72);
}

.block p {
  max-width: 86%;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.32;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 8px 20px rgba(0,0,0,0.78);
}

@keyframes attentionFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--attention-scale));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -42px 70px rgba(0,0,0,0.38);
  }
  25% {
    transform: translate3d(calc(var(--card-anim-move) * -0.45), calc(var(--card-anim-move) * -1), 0) rotate(calc(var(--card-anim-rotate) * -1)) scale(calc(var(--attention-scale) + var(--card-anim-zoom)));
  }
  50% {
    transform: translate3d(calc(var(--card-anim-move) * 0.45), calc(var(--card-anim-move) * 0.28), 0) rotate(calc(var(--card-anim-rotate) * 0.8)) scale(calc(var(--attention-scale) + (var(--card-anim-zoom) * 0.55)));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.22),
      inset 0 -42px 70px rgba(0,0,0,0.34);
  }
  75% {
    transform: translate3d(calc(var(--card-anim-move) * -0.28), calc(var(--card-anim-move) * -0.57), 0) rotate(calc(var(--card-anim-rotate) * -0.65)) scale(calc(var(--attention-scale) + (var(--card-anim-zoom) * 0.72)));
  }
}

.arrow {
  position: absolute;
  right: 17px;
  bottom: 16px;
  width: 18px;
  text-align: right;
  font-size: 26px;
  line-height: 1;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 420px) {
  .hero {
    height: 430px;
  }

  .profile h1 {
    font-size: 42px;
  }

  .sections {
    gap: 14px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 30px;
  }

  .block {
    min-height: 154px;
    padding: 16px;
    border-radius: 26px;
  }

  .card-icon {
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .label {
    font-size: 16px;
  }

  .block p {
    font-size: 12px;
  }
}

@media (min-width: 860px) {
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px);
  }

  .phone {
    width: min(100%, 1120px);
    max-width: none;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(320px, 440px) minmax(0, 640px);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "hero intro"
      "hero cards";
    align-items: stretch;
    column-gap: clamp(24px, 3.2vw, 42px);
    row-gap: 26px;
    margin: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .hero {
    grid-area: hero;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 680px;
    align-self: stretch;
    margin: 0;
    transform: none;
    border-radius: 40px;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.10),
      0 34px 80px rgba(0,0,0,0.42);
  }

  .profile {
    grid-area: hero;
    align-self: end;
    justify-self: center;
    width: min(100%, 340px);
    margin: 0 0 150px;
    padding-top: 0;
  }

  .socials-stage {
    grid-area: hero;
    align-self: end;
    justify-self: center;
    position: relative;
    top: auto;
    margin: 0 0 58px;
  }

  .social-hint {
    display: none;
  }

  .desktop-intro {
    grid-area: intro;
    display: block;
    align-self: start;
    max-width: 620px;
    padding-top: 0;
  }

  .desktop-intro h2 {
    max-width: 610px;
    color: rgba(232,238,244,0.82);
    font-size: clamp(44px, 4.5vw, 64px);
    line-height: 0.96;
    font-weight: 880;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 16px 42px rgba(0,0,0,0.48);
  }

  .desktop-intro h2 span {
    display: block;
    color: rgba(186,205,226,0.72);
    font-style: italic;
    font-weight: 760;
    text-shadow: 0 14px 34px rgba(43,84,118,0.18);
  }

  .sections {
    grid-area: cards;
    align-self: start;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    margin: 48px 0 0;
    padding: 0;
  }

  .sections::before {
    display: none;
  }

  .block {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .block.is-animated-card {
    animation: none;
  }
}

.block:hover .arrow,
.block:hover .plus {
  transform: translateX(4px);
  color: rgba(255,255,255,0.9);
}

.arrow,
.plus {
  transition: 0.25s ease;
}

/* Builder-only onboarding empty states. Hidden from the public site. */
.phone.is-builder .hero,
.phone.is-builder .profile,
.phone.is-builder .socials-stage,
.phone.is-builder .sections,
.phone.is-builder .desktop-intro {
  position: relative;
}

.phone.is-builder .builder-helper-label {
  position: absolute;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(8,9,12,0.28);
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.phone.is-builder .is-hero-label {
  top: 14px;
  left: 14px;
}

.phone.is-builder .is-profile-label {
  top: 204px;
  left: 50%;
  transform: translateX(-50%);
}

.phone.is-builder .is-socials-label {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.phone.is-builder .is-cards-label {
  top: 8px;
  left: 30px;
}

.phone.is-builder .builder-hero-empty {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 46px;
  min-height: 136px;
  z-index: 12;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(130,201,255,0.16), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.032)),
    rgba(8,9,12,0.48);
  color: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 18px 42px rgba(0,0,0,0.13);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.phone.is-builder .builder-hero-empty:hover,
.phone.is-builder .builder-hero-empty:focus-visible,
.phone.is-builder .builder-socials-empty:hover,
.phone.is-builder .builder-socials-empty:focus-visible,
.phone.is-builder .roa-builder-inline-add-card:hover,
.phone.is-builder .roa-builder-inline-add-card:focus-visible {
  border-color: rgba(130,201,255,0.42) !important;
  background:
    linear-gradient(135deg, rgba(130,201,255,0.11), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.065) !important;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 18px 42px rgba(0,0,0,0.18);
}

.builder-empty-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.06);
}

.builder-empty-icon::before {
  content: "";
  width: 15px;
  height: 12px;
  border: 1.5px solid rgba(255,255,255,0.60);
  border-radius: 4px;
  box-shadow: inset 5px -4px 0 -3px rgba(255,255,255,0.60);
}

.builder-empty-kicker,
.builder-add-card-copy strong {
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

.builder-empty-copy,
.builder-add-card-copy small {
  display: block;
  max-width: 260px;
  color: rgba(255,255,255,0.50);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.builder-empty-action,
.builder-add-card-copy em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-top: 4px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.085);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 680;
}

.phone.is-builder [data-builder-placeholder] {
  min-height: 1.15em;
}

.phone.is-builder [data-builder-placeholder]:empty::before {
  content: attr(data-builder-placeholder);
  color: rgba(255,255,255,0.46);
  text-shadow: none;
}

.phone.is-builder .is-builder-empty-text {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.phone.is-builder .profile .is-builder-empty-text {
  width: fit-content;
  min-width: 120px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2px 0;
}

.phone.is-builder .profile h1.is-builder-empty-text {
  min-width: 72px;
  font-size: 30px !important;
  font-weight: 620 !important;
  line-height: 1.05;
}

.phone.is-builder .is-builder-empty-hero .roa-builder-hero-upload {
  display: none;
}

.phone.is-builder .social-hint.is-builder-empty-text {
  display: block;
  min-width: 0;
  text-align: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045) !important;
  color: rgba(255,255,255,0.50) !important;
  box-shadow: none !important;
}

.phone.is-builder .desktop-intro {
  display: none;
  position: relative;
  z-index: 20;
  margin: 18px 24px 0;
}

.phone.is-builder .desktop-intro:has(h2:not(:empty)) {
  display: block;
}

.phone.is-builder .desktop-intro h2.is-builder-empty-text {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 650;
  text-align: center;
}

.phone.is-builder .builder-socials-empty {
  width: auto;
  min-width: 150px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 3px 4px 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  font: inherit;
  text-align: center;
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.phone.is-builder .builder-social-ghosts {
  display: flex;
  gap: 7px;
  margin-bottom: 0;
}

.phone.is-builder .builder-social-ghosts i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.055);
}

.phone.is-builder .builder-social-ghosts .is-plus {
  position: relative;
  border-color: rgba(130,201,255,0.28);
  background: rgba(130,201,255,0.12);
}

.phone.is-builder .builder-social-ghosts .is-plus::before,
.phone.is-builder .builder-social-ghosts .is-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  transform: translate(-50%, -50%);
}

.phone.is-builder .builder-social-ghosts .is-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.phone.is-builder .sections {
  padding-top: 24px;
}

.phone.is-builder .builder-socials-empty .builder-empty-kicker {
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  font-weight: 560;
}

.phone.is-builder .sections .roa-builder-inline-add-card {
  border: 1px solid rgba(255,255,255,0.10) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(130,201,255,0.12), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
    rgba(255,255,255,0.038) !important;
  cursor: pointer;
}

.phone.is-builder .sections .roa-builder-inline-add-card img {
  width: 34px;
  height: 34px;
  margin: auto;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  opacity: 0.86;
}

.phone.is-builder .sections .roa-builder-inline-add-card .builder-add-card-copy {
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 100%;
  text-align: center;
}

.phone.is-builder .sections .roa-builder-inline-add-card:not(.is-empty-add-card) {
  min-height: 96px;
  align-items: center;
  justify-content: center;
}

.phone.is-builder .sections .roa-builder-inline-add-card:not(.is-empty-add-card) img {
  display: none;
}

.phone.is-builder .sections .roa-builder-inline-add-card.is-empty-add-card {
  min-height: 172px;
  align-items: center;
}

@media (min-width: 860px) {
  .phone.is-builder .is-profile-label {
    top: auto;
    bottom: 296px;
  }

  .phone.is-builder .is-socials-label {
    top: auto;
    bottom: 118px;
  }

  .phone.is-builder .is-cards-label {
    top: -34px;
    left: 0;
  }

  .phone.is-builder .builder-hero-empty {
    top: 58px;
    min-height: 154px;
  }

  .phone.is-builder .desktop-intro {
    margin: 0;
  }

  .phone.is-builder .sections {
    padding-top: 0;
  }
}
