:root {
  --orange: #ff8c42;
  --pink: #e91e8c;
  --ink: #0f1115;
  --muted: #5c6470;
  --surface: #ffffff;
  --tint: #f6f7fb;
  --ring: 0 0 0 3px rgba(233, 30, 140, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border-radius: 0.5rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  outline: none;
  box-shadow: var(--ring);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 17, 21, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  border-radius: 22%;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.2;
  min-width: 0;
}

.brand-name {
  font-size: 1.05rem;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  max-width: 16rem;
}

.nav-toggle {
  display: none;
}

.nav-group-label {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

.nav a,
.nav .nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover,
.nav .nav-link:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.25);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

body.menu-open {
  overflow: hidden;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(15, 17, 21, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 769px) {
  .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav-toggle:focus-visible {
    outline: none;
    box-shadow: var(--ring);
  }

  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-group-label {
    display: block;
    margin: 0;
    padding: 1rem 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: none;
    pointer-events: none;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-header-h, 4.5rem);
    z-index: 28;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: min(75vh, 28rem);
    padding: 0.35rem 1.25rem 1.25rem;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 17, 21, 0.08);
    box-shadow: 0 16px 48px rgba(15, 17, 21, 0.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.35rem);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav .nav-link:not(.nav-cta) {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(15, 17, 21, 0.08);
    color: var(--ink);
  }

  .nav .nav-link:not(.nav-cta):hover {
    color: var(--pink);
  }

  .nav .nav-cta {
    margin-top: 0.85rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-bottom: none;
  }

  .nav .nav-cta:hover {
    color: #fff !important;
    filter: brightness(1.05);
  }

  .split .split-media {
    display: none;
  }

  .split {
    gap: 0;
  }

  .product-heading-logo {
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 22%;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(233, 30, 140, 0.2);
  }

  .product-heading-logo--svg {
    object-fit: contain;
    background: transparent;
  }

  .product-heading-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .product-heading-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    min-height: 64px;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }

  .split-copy .product-heading-text h2 {
    margin: 0;
    padding: 0;
    font-size: clamp(1.65rem, 6vw, 2.15rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .split-copy .product-heading-text .tagline {
    margin: 0;
    padding: 0;
    margin-top: 0.0625rem;
    color: var(--muted);
    font-weight: 500;
    font-size: clamp(0.95rem, 3.3vw, 1.18rem);
    line-height: 1.2;
  }

  .tagline-desktop-only {
    display: none;
  }
}

.hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: radial-gradient(
      120% 90% at 10% 0%,
      rgba(255, 140, 66, 0.35),
      transparent 55%
    ),
    radial-gradient(90% 80% at 90% 20%, rgba(233, 30, 140, 0.28), transparent 50%),
    linear-gradient(180deg, #fff6f0 0%, #ffffff 55%);
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 14px 40px rgba(233, 30, 140, 0.28);
}

.button-primary:hover {
  filter: brightness(1.03);
}

.button-ghost {
  background: #fff;
  border-color: rgba(15, 17, 21, 0.12);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(15, 17, 21, 0.22);
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-tint {
  background: var(--tint);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 65ch;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.split-copy .tagline {
  font-weight: 600;
  color: var(--ink);
  margin-top: -0.35rem;
}

.product-heading-text {
  min-width: 0;
}

@media (min-width: 769px) {
  .product-heading-row {
    display: block;
  }

  .product-heading-logo {
    display: none;
  }
}

.feature-list {
  margin: 1.25rem 0 1.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.split-media {
  display: flex;
  justify-content: center;
}

.product-card {
  width: min(100%, 320px);
  padding: 2rem 1.75rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 24px 60px rgba(15, 17, 21, 0.08);
  text-align: center;
}

.product-card img {
  margin: 0 auto 1rem;
  border-radius: 22%;
}

.product-card-img--svg {
  border-radius: 22%;
  box-shadow: 0 12px 36px rgba(233, 30, 140, 0.22);
}

.product-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
}

.product-card-meta {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 17, 21, 0.14);
  font: inherit;
  background: #fff;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: rgba(233, 30, 140, 0.55);
  box-shadow: var(--ring);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
}

.footer-contact a {
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-decoration-color: var(--pink);
}
