
:root {
  --ink: #17121f;
  --paper: #faf8fc;
  --accent: #f64ab4;
  --purple: #8647f6;
  --blue: #4067f4;
  --line: rgba(44, 25, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  padding: 28px clamp(24px, 5vw, 76px) 64px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 22%, rgba(246, 74, 180, 0.25), transparent 21%),
    radial-gradient(circle at 72% 68%, rgba(88, 91, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #1b1126 0%, #0d0a12 62%, #18102d 100%);
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  position: relative;
  display: block;
  width: 238px;
  height: 66px;
  overflow: hidden;
  text-decoration: none;
}

.brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 238px;
  height: auto;
  transform: translate(-50%, -50%);
}

.contact-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 88%);
  margin-top: clamp(110px, 18vh, 190px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 8.4vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.intro {
  max-width: 590px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 245px;
  padding: 18px 20px;
  background: linear-gradient(105deg, var(--accent), #d74edc 48%, var(--blue));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  background: linear-gradient(105deg, #ff67c4, #9857ff 55%, #5273ff);
  transform: translateY(-3px);
}

.primary-button:focus-visible,
.contact-link:focus-visible,
.contact-card a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.side-note {
  position: absolute;
  right: 32px;
  bottom: 50px;
  z-index: 2;
  margin: 0;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  opacity: 0.48;
  writing-mode: vertical-rl;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.9;
}

.orb-one {
  right: -10vw;
  bottom: -31vw;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 32% 30%, #f149b1 0%, #764ee9 30%, #283b94 52%, #100d1b 76%);
  box-shadow:
    inset -55px -65px 90px #09070d,
    0 0 140px rgba(145, 69, 237, 0.3);
}

.orb-two {
  top: 21%;
  right: 18%;
  width: 9px;
  height: 9px;
  background: #ff58ba;
  box-shadow: 0 0 28px #ff58ba;
}

.contact-section {
  padding: clamp(82px, 10vw, 150px) clamp(24px, 5vw, 76px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
}

.eyebrow-dark {
  color: var(--purple);
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.contact-card {
  min-height: 330px;
  padding: 28px 32px 34px 0;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-card + .contact-card {
  padding-left: 32px;
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card:hover {
  background: rgba(246, 74, 180, 0.045);
  transform: translateY(-4px);
}

.card-number {
  margin-bottom: 70px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-card h3 {
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  display: block;
  min-height: 68px;
  margin-bottom: 26px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-card p:last-child {
  max-width: 280px;
  color: #75736e;
  font-size: 0.87rem;
  line-height: 1.55;
}

.legal-section {
  padding: clamp(70px, 9vw, 125px) clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 74, 180, 0.09), transparent 25%),
    #f0ebf5;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.25fr;
  gap: 60px;
}

.legal-grid h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.legal-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  line-height: 1.7;
}

.legal-copy p {
  margin: 0;
}

.legal-copy strong {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a {
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 860px;
    padding-bottom: 52px;
  }

  .hero-content {
    width: 100%;
    margin-top: 120px;
  }

  .brand-logo,
  .brand-logo img {
    width: 205px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .orb-one {
    right: -42vw;
    bottom: -23vw;
    width: 125vw;
    height: 125vw;
    opacity: 0.6;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 24px;
  }

  .contact-grid {
    display: block;
  }

  .contact-card,
  .contact-card + .contact-card {
    min-height: auto;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .card-number {
    margin-bottom: 38px;
  }

  .legal-grid,
  .legal-copy {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  footer {
    display: block;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-button {
    transition: none;
  }
}
