/* Femboy Fiber LLC — styles.v1.css
   Clean corporate-modern. Palette: white -> bright light pink.
   Hand-written, no framework, no build step. */

/* ------------------------------------------------------------------ Fonts */
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

/* --------------------------------------------------------------- Tokens */
:root {
  --white: #ffffff;
  --pink-50: #fff5fa;
  --pink-100: #ffe6f2;
  --pink-200: #ffcce4;
  --pink-300: #ff9fd4;
  --pink-400: #ff6fbf;
  --pink-500: #f24aa4;
  --pink-600: #d62f8a;
  --pink-700: #b81f74;

  --ink-900: #1a1420;
  --ink-700: #4a4152;
  --ink-500: #8a8090;

  --line: rgba(26, 20, 32, 0.09);
  --line-strong: rgba(26, 20, 32, 0.16);

  --grad-hero: linear-gradient(180deg, #fff 0%, var(--pink-50) 55%, var(--pink-100) 100%);
  --grad-brand: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-700) 100%);

  --shadow-sm: 0 1px 2px rgba(26, 20, 32, 0.06), 0 1px 1px rgba(26, 20, 32, 0.04);
  --shadow-md: 0 10px 24px -12px rgba(26, 20, 32, 0.18);
  --shadow-lg: 0 24px 48px -16px rgba(242, 74, 164, 0.28);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 10vw, 120px);

  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
  color: inherit;
}
a {
  color: var(--pink-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

/* ------------------------------------------------------------- Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: none;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--pink-500);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--pink-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.82em 1.4em;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.975rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease),
    background-color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.btn .icon {
  font-size: 1.05em;
}
.btn--primary:hover {
  background: var(--pink-700);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.btn--secondary {
  --btn-bg: var(--white);
  --btn-fg: var(--ink-900);
  border-color: var(--line-strong);
}
.btn--secondary:hover {
  border-color: var(--pink-400);
  color: var(--pink-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
}
.btn--ghost:hover {
  color: var(--pink-600);
}
.btn--lg {
  padding: 1em 1.7em;
  font-size: 1.05rem;
}

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-decoration: none;
}
.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}
.nav {
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: 0.5em 0.85em;
  border-radius: var(--pill);
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.nav__link:hover {
  color: var(--ink-900);
  background: var(--pink-50);
}
.nav__link.is-active {
  color: var(--pink-600);
}
.header-cta {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  font-size: 1.15rem;
  color: var(--ink-900);
  cursor: pointer;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding-block: clamp(56px, 9vw, 104px) var(--section-y);
}
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.9em;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--pink-600);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__title {
  margin-top: 22px;
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero__title em {
  font-style: normal;
  color: var(--pink-500);
}
.hero__lede {
  margin-top: 20px;
  font-size: clamp(1.075rem, 2.4vw, 1.3rem);
  color: var(--ink-700);
  max-width: 60ch;
}
.hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.field {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5em 0.6em 0.5em 1.05em;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  box-shadow: var(--shadow-sm);
}
.field:focus-within {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 4px rgba(255, 111, 191, 0.2);
}
.field .icon {
  font-size: 1.05rem;
  color: var(--pink-500);
}
.field__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.55em 0;
  font-size: 1rem;
}
.field .btn {
  flex: none;
}
.coverage-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--pink-600);
  font-weight: 500;
  min-height: 1.4em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero__trust .icon {
  color: var(--pink-500);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------- Stats */
.stats {
  position: relative;
  background: linear-gradient(180deg, var(--pink-100), var(--pink-50));
  border-block: 1px solid var(--line);
  padding-block: clamp(44px, 7vw, 76px);
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(214, 47, 138, 0.16) 1.2px, transparent 1.3px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
  opacity: 0.6;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
}
.stat__num span {
  color: var(--pink-500);
}
.stat__label {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
  font-weight: 500;
}

/* -------------------------------------------------------------- Sections */
.section {
  padding-block: var(--section-y);
}
.section--tint {
  background: var(--pink-50);
}
.section__head {
  max-width: 62ch;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__eyebrow {
  display: block;
  color: var(--pink-600);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.section__intro {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--ink-700);
}

/* --------------------------------------------------------------- Teasers */
.teasers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.teaser {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.teaser:hover {
  transform: translateY(-4px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-lg);
}
.teaser__icon,
.feature__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
}
.teaser__title {
  margin-top: 22px;
  font-size: 1.5rem;
}
.teaser__text {
  margin-top: 12px;
}
.teaser__list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.teaser__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  font-size: 0.98rem;
}
.teaser__list .icon {
  margin-top: 0.28em;
  color: var(--pink-500);
  font-size: 0.9rem;
}
.teaser__link {
  margin-top: 26px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  text-decoration: none;
  color: var(--pink-600);
}
.teaser__link .icon {
  transition: transform 0.15s var(--ease);
}
.teaser__link:hover .icon {
  transform: translateX(3px);
}

/* -------------------------------------------------------------- Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
}
.feature {
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-lg);
}
.feature__icon {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}
.feature__title {
  margin-top: 18px;
  font-size: 1.18rem;
}
.feature__text {
  margin-top: 8px;
  font-size: 0.98rem;
}

/* -------------------------------------------------------------- CTA band */
.cta-band {
  padding-block: var(--section-y);
}
.cta-band__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(32px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-600) 0%, var(--pink-700) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band__inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  max-width: 20ch;
}
.cta-band__inner p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
}
.cta-band .btn--secondary {
  --btn-fg: var(--pink-600);
  border-color: transparent;
}
.cta-band .btn--secondary:hover {
  color: var(--pink-600);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------- Footer */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(52px, 8vw, 88px) 32px;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px 28px;
}
.footer__brand .brand {
  color: #fff;
}
.footer__brand p {
  margin-top: 16px;
  max-width: 34ch;
}
.footer__brand a {
  color: var(--pink-300);
}
.footer__title {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.footer__links a:hover {
  color: #fff;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease),
    transform 0.15s var(--ease);
}
.footer__social a:hover {
  background: var(--pink-500);
  border-color: var(--pink-500);
  transform: translateY(-2px);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------- Stub / error pages */
.stub,
.error-page {
  background: var(--grad-hero);
}
.stub__inner,
.error-page__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(72px, 14vw, 150px);
}
.stub__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 26px;
  border-radius: 20px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: var(--shadow-lg);
}
.stub__inner h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}
.error-page__code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(5rem, 20vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stub__inner p,
.error-page__inner p {
  margin-top: 16px;
  font-size: 1.1rem;
}
.stub__actions,
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.stub__links {
  margin-top: 26px;
  font-size: 0.95rem;
}
.stub__links a {
  margin-inline: 8px;
}

/* Mock sign-in card (Customer Area stub) */
.signin-card {
  max-width: 380px;
  margin: 34px auto 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.signin-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 14px 0 6px;
}
.signin-card input {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--pink-50);
}
.signin-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.signin-card__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-500);
  text-align: center;
}

/* ----------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav.is-open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 12px var(--gutter) 22px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav.is-open .nav__link {
    padding: 0.85em 0.6em;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .nav.is-open .header-cta {
    display: inline-flex;
    margin: 14px 0 0;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .teasers {
    grid-template-columns: 1fr;
  }
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    grid-template-columns: 1fr;
  }
  .hero__form .btn {
    width: 100%;
    justify-content: center;
  }
  .field {
    flex-basis: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------- Motion / a11y */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(26, 20, 32, 0.3);
    --ink-700: #2c2536;
  }
}
