/* Hero section and shared buttons
   Reorganized from the verified working production build. */

.hero {
  isolation: isolate;
  background: radial-gradient(circle at 88% 20%,#0da5ee21,#0000 25%),radial-gradient(circle at 78% 48%,#1b2336b3,#0000 32%),linear-gradient(120deg,#090b10 0%,#080a0f 55%,#111520 100%);
  grid-template-columns: minmax(0,760px);
  align-items: center;
  gap: 0;
  min-height: 790px;
  padding: 224px max(40px,50vw - 590px) 82px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  z-index: -3;
  opacity: .14;
  background-image: linear-gradient(#ffffff14 1px,#0000 1px),linear-gradient(90deg,#ffffff14 1px,#0000 1px);
  background-size: 54px 54px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg,#000,#0000 42%,#000);
  mask-image: linear-gradient(90deg,#000,#0000 42%,#000);
}

.hero-glow {
  z-index: -2;
  filter: blur(130px);
  opacity: .22;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  position: absolute;
}

.hero-glow-pink {
  background: var(--pink);
  top: 26%;
  right: 19%;
}

.hero-glow-blue {
  background: var(--blue);
  bottom: -10%;
  right: -5%;
}

.hero-copy {
  z-index: 2;
  position: relative;
}

.eyebrow,.section-kicker {
  color: #c5c9d2;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.eyebrow {
  gap: 14px;
}

.eyebrow-line {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 999px;
  flex: none;
  width: 38px;
  height: 3px;
}

.eyebrow-copy {
  align-items: baseline;
  display: flex;
}

.eyebrow-copy strong {
  color: #f4f5f8;
  letter-spacing: .075em;
  font-size: clamp(22px,2.2vw,28px);
  font-weight: 950;
  line-height: 1;
}

.eyebrow-copy small {
  color: #aeb4c0;
  letter-spacing: .15em;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 850;
}

.eyebrow-copy small:before {
  color: #7c8390;
  content: "·";
  margin: 0 12px;
}

.hero h1 {
  letter-spacing: -.065em;
  text-transform: uppercase;
  margin: 24px 0;
  font-size: clamp(54px,5.7vw,84px);
  font-style: italic;
  font-weight: 950;
  line-height: .96;
}

.hero h1 em {
  color: #0000;
  background: linear-gradient(95deg, var(--pink) 4%, #f02c36 43%, var(--blue) 90%);
  font-style: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy>p {
  color: #b2b7c3;
  max-width: 570px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
  display: flex;
}

.mobile-text-action {
  display: none !important;
}

.hero-contact-strip {
  flex-wrap: wrap;
  gap: 12px;
  max-width: 700px;
  margin-top: 18px;
  display: flex;
}

.hero-contact-strip .contact-card {
  background: #ffffff0b;
  border: 1px solid #ffffff29;
  border-radius: 11px;
  flex: 250px;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 11px 17px;
  display: flex;
  box-shadow: inset 0 1px #ffffff0d;
}

.hero-contact-strip a.contact-card {
  transition: border-color .16s,background .16s,transform .16s;
}

.hero-contact-strip a.contact-card:hover,.hero-contact-strip a.contact-card:focus-visible {
  background: #ffffff16;
  border-color: #ffffff52;
  transform: translateY(-2px);
}

.hero-contact-strip .glyph {
  color: #ff424e;
  background: #d70b172b;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  display: grid;
}

.hero-contact-strip .email-contact .glyph {
  color: #e6e9ed;
  background: #d6d9de1a;
}

.hero-contact-strip span {
  gap: 4px;
  min-width: 0;
  display: grid;
}

.hero-contact-strip small {
  color: #8e95a3;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 850;
}

.hero-contact-strip strong {
  overflow-wrap: anywhere;
  color: #f5f6f8;
  font-size: 15px;
}

.copyable-contact {
  cursor: text;
  -webkit-user-select: all;
  user-select: all;
}

.button {
  border: 1px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .18s,border-color .18s,background .18s;
  display: inline-flex;
}

.button:hover,.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(105deg,#dd101c,#a50710);
  box-shadow: 0 14px 34px #d70b1733;
}

.button-secondary {
  background: #ffffff0b;
  border-color: #ffffff2b;
}

.hero-visual {
  background: linear-gradient(135deg,#ffffff0e,#0000 45%),linear-gradient(145deg,#111621,#090b10 63%);
  border: 1px solid #ffffff1c;
  border-radius: 32px;
  min-height: 455px;
  position: relative;
  transform: perspective(900px)rotateY(-3deg);
  box-shadow: 0 38px 80px #00000073;
}

.hero-visual:before {
  content: "";
  border: 1px solid #ffffff13;
  border-radius: 24px;
  position: absolute;
  inset: 32px;
}

.hero-visual:after {
  content: "";
  clip-path: polygon(0 48%,19% 18%,66% 8%,85% 27%,100% 74%,92% 91%,8% 92%);
  background: linear-gradient(167deg,#202838 0%,#090c12 48%,#151a24 72%);
  border-radius: 68% 31% 24% 18%/70% 45% 31% 26%;
  width: 79%;
  height: 33%;
  position: absolute;
  bottom: 17%;
  right: 10%;
  transform: skew(-14deg);
  box-shadow: inset 0 2px #ffffff1c,0 26px 50px #0000008a;
}

.hero-monogram {
  z-index: 2;
  color: var(--blue);
  letter-spacing: -.13em;
  opacity: .14;
  font-size: clamp(105px,11vw,160px);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-63%)skew(-8deg);
}

.hero-monogram span {
  color: var(--pink);
}

.shine-line {
  z-index: 1;
  filter: drop-shadow(0 0 9px);
  border-radius: 50%;
  height: 2px;
  position: absolute;
  transform: rotate(-9deg);
}

.shine-one {
  width: 70%;
  color: var(--blue);
  background: linear-gradient(90deg,#0000,currentColor,#0000);
  top: 40%;
  right: 5%;
}

.shine-two {
  width: 46%;
  color: var(--pink);
  background: linear-gradient(90deg,#0000,currentColor,#0000);
  bottom: 31%;
  right: 17%;
}

.mobile-card {
  z-index: 4;
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #090b10d6;
  border-radius: 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  display: grid;
  position: absolute;
  bottom: 24px;
  left: 26px;
  right: 26px;
}

.live-dot {
  background: #4ee591;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 5px #4ee5911f;
}

.mobile-card div {
  gap: 3px;
  display: grid;
}

.mobile-card small,.price-chip small {
  color: #989eac;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.mobile-card strong {
  font-size: 14px;
}

.price-chip {
  z-index: 4;
  border: 1px solid var(--line);
  background: #11141de8;
  border-radius: 13px;
  gap: 3px;
  min-width: 100px;
  padding: 12px 15px;
  display: grid;
  position: absolute;
  box-shadow: 0 16px 30px #0000004d;
}

.price-chip strong {
  font-size: 22px;
  font-style: italic;
}

.price-chip-top {
  top: 48px;
  right: -21px;
}

.price-chip-top strong {
  color: var(--blue);
}

.price-chip-bottom {
  bottom: 114px;
  left: -23px;
}

.price-chip-bottom strong {
  color: var(--pink);
}
