:root {
  --cream: #fbf8ef;
  --cream-2: #fffdf7;
  --blush: #fbd5e8;
  --pink: #f58bd2;
  --hot: #ff4fb8;
  --rose: #a63873;
  --ink: #211713;
  --muted: #78645d;
  --line: rgba(33, 23, 19, 0.14);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 90px rgba(89, 36, 68, 0.16);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 184, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 34%, rgba(251, 213, 232, 0.8), transparent 34rem),
    linear-gradient(135deg, var(--cream), #fff 46%, var(--blush));
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere::before,
.atmosphere::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  filter: blur(34px);
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
}

.atmosphere::before {
  width: 34vw;
  height: 34vw;
  min-width: 230px;
  min-height: 230px;
  top: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 79, 184, 0.38), rgba(251, 213, 232, 0.05) 68%, transparent);
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.atmosphere::after {
  width: 38vw;
  height: 38vw;
  min-width: 260px;
  min-height: 260px;
  right: -12%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(246, 154, 216, 0.42), rgba(255, 255, 255, 0.06) 66%, transparent);
  animation: fogDriftAlt 22s ease-in-out infinite alternate;
}

.atmosphere span {
  position: absolute;
  width: var(--size, 86px);
  height: var(--size, 86px);
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 999px;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.42), rgba(246, 154, 216, 0.16) 42%, rgba(255, 79, 184, 0.04) 72%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.22), 0 18px 70px rgba(255, 79, 184, 0.12);
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
  animation: bubbleFloat var(--speed, 16s) ease-in-out infinite;
}

.atmosphere span:nth-child(1) {
  --size: 74px;
  --speed: 16s;
  top: 18%;
  left: 7%;
}

.atmosphere span:nth-child(2) {
  --size: 118px;
  --speed: 22s;
  top: 54%;
  left: 72%;
  animation-delay: -5s;
}

.atmosphere span:nth-child(3) {
  --size: 52px;
  --speed: 14s;
  top: 76%;
  left: 18%;
  animation-delay: -8s;
}

.atmosphere span:nth-child(4) {
  --size: 96px;
  --speed: 19s;
  top: 28%;
  left: 86%;
  animation-delay: -3s;
}

.atmosphere span:nth-child(5) {
  --size: 42px;
  --speed: 13s;
  top: 12%;
  left: 48%;
  animation-delay: -10s;
}

.atmosphere span:nth-child(6) {
  --size: 140px;
  --speed: 25s;
  top: 83%;
  left: 58%;
  animation-delay: -12s;
}

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

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.desktop-nav a,
.menu-button,
.primary-action,
.secondary-action {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--pink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a:hover {
  background: var(--ink);
  color: white;
}

.header-cta {
  display: none;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.menu-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: grid;
  place-content: center;
  gap: 18px;
  background: rgba(251, 248, 239, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(24px);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(36px, 12vw, 72px);
  line-height: 1;
  text-align: center;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  gap: 34px;
  padding: 46px 0 38px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 22px rgba(255, 79, 184, 0.7);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 8.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.18em;
}

.hero-title .word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.82em, 0) rotate(3deg);
  transform-origin: 50% 80%;
}

.hero-copy.is-visible .hero-title .char {
  animation: letterGlide 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 34ms);
}

.hero p,
.section-heading p,
.contact-section p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 1000;
}

.primary-action {
  padding: 0 22px;
  background: var(--hot);
  color: white;
  box-shadow: 0 14px 34px rgba(255, 79, 184, 0.28);
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 620px);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--glass);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.portrait-card::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 2px solid rgba(255, 79, 184, 0.42);
  border-radius: 44px;
  content: "";
  transform: rotate(-3deg);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: clamp(430px, 72vw, 720px);
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.16);
  backdrop-filter: blur(16px);
}

.floating-stat strong {
  color: var(--hot);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.floating-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-stat.one {
  top: 24px;
  left: -8px;
}

.floating-stat.two {
  right: -8px;
  bottom: 26px;
}

.proof-band,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.proof-band {
  padding: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.metric-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(251, 213, 232, 0.55);
}

.metric-grid strong,
.metric-grid span {
  font-family: var(--serif);
  font-size: clamp(42px, 12vw, 78px);
  line-height: 1;
}

.metric-grid span {
  color: var(--hot);
}

.metric-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.receipts-section,
.work-section,
.experience-section,
.contact-section {
  padding: 74px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 11vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.receipt-layout {
  display: grid;
  gap: 16px;
}

.receipt-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.receipt-card.large {
  min-height: 620px;
}

.receipt-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
}

.receipt-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(33, 23, 19, 0.68));
  content: "";
  pointer-events: none;
}

.receipt-card div {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(33, 23, 19, 0.72);
  color: white;
  backdrop-filter: blur(14px);
}

.receipt-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.receipt-card strong {
  font-size: 20px;
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.09);
}

.work-grid article {
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.experience-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.company-mark {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(89, 36, 68, 0.08);
}

.ontrac-mark {
  color: #154a8b;
  letter-spacing: 0.1em;
}

.hawk-mark {
  color: #0f4d7f;
  font-style: italic;
}

.luminos-mark {
  color: #f05a28;
}

.hivibe-mark {
  color: #1d7a45;
  letter-spacing: 0.13em;
}

.timeline time {
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.work-grid h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.05;
}

.work-grid p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-strip {
  width: 100vw;
  margin: 78px calc(50% - 50vw) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee div {
  display: flex;
  align-items: center;
}

.marquee span {
  padding: 24px 32px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
}

.contact-section {
  display: grid;
  gap: 26px;
  margin: 74px 0 40px;
  padding: 28px;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 900;
}

.contact-link svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.instagram-link {
  color: #d62976;
}

.tiktok-link {
  color: #111;
}

.linkedin-link {
  color: #0a66c2;
}

.email-link {
  color: var(--rose);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes letterGlide {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 0.82em, 0) rotate(3deg);
  }

  58% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.06em, 0) rotate(-1deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -38px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-18px, 28px, 0) scale(0.94);
  }
}

@keyframes fogDrift {
  from {
    transform: translate3d(-4%, 2%, 0) scale(1);
  }

  to {
    transform: translate3d(14%, 12%, 0) scale(1.18);
  }
}

@keyframes fogDriftAlt {
  from {
    transform: translate3d(5%, 0, 0) scale(1.06);
  }

  to {
    transform: translate3d(-12%, -11%, 0) scale(0.92);
  }
}

@media (min-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .hero {
    grid-template-columns: 1.04fr 0.96fr;
    padding-top: 64px;
  }

  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .receipt-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .receipt-card.large {
    grid-row: span 2;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.94;
  }

  .portrait-card {
    transform: none;
  }

  .portrait-card img {
    height: 500px;
  }

  .floating-stat {
    position: static;
    display: inline-grid;
    margin: 10px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading,
  .contact-section > div:first-child {
    justify-items: center;
    text-align: center;
  }

  .hero-title {
    justify-content: center;
  }

  .hero p,
  .section-heading p,
  .contact-section p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-kicker,
  .eyebrow {
    justify-content: center;
  }

  .proof-band {
    text-align: center;
  }

  .metric-grid article,
  .work-grid article,
  .timeline article {
    text-align: center;
  }

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

  .experience-topline {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 24px;
  }

  .timeline time {
    text-align: center;
  }

  .receipt-card.large,
  .receipt-card {
    min-height: 420px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-title .char {
    opacity: 1;
    transform: none;
  }
}
