/* =============================================================================
   Vybes Art Manager — marketing site design system
   Trust-first SaaS: deep navy primary, violet AI accent, verified-green signals,
   neutral canvas. Type: Manrope headings + Inter UI/body.
   ============================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  /* Canvas & ink */
  --canvas: #f7f8fa;
  --canvas-2: #fcfcfd;
  --surface: #ffffff;
  --ink: #0c1425;
  --ink-2: #344054;
  --ink-3: #4d5a70;
  --ink-4: #7d8899;
  --line: #e6e9ef;
  --line-2: #d7dce5;

  /* Brand: navy → blue (trust) */
  --brand-900: #0a1c40;
  --brand-800: #102a5c;
  --brand-700: #17397c;
  --brand-600: #1e4da0;
  --brand-500: #2e69cc;
  --brand-400: #5b8ce4;
  --brand-100: #e8effc;
  --brand-50: #f2f6fe;

  /* Accents */
  --violet: #5d49c4;
  --violet-100: #eeebfb;
  --verified: #067a4b;
  --verified-100: #e6f6ee;
  --gold: #b7862f;

  /* Elevation (blue-tinted, feels engineered rather than decorative) */
  --sh-xs: 0 1px 2px rgba(12, 20, 37, 0.05);
  --sh-sm: 0 1px 3px rgba(12, 20, 37, 0.06), 0 1px 2px rgba(12, 20, 37, 0.04);
  --sh-md: 0 12px 28px -10px rgba(12, 20, 37, 0.16), 0 2px 6px rgba(12, 20, 37, 0.04);
  --sh-lg: 0 32px 64px -24px rgba(10, 28, 64, 0.3), 0 8px 20px -12px rgba(10, 28, 64, 0.16);
  --sh-brand: 0 12px 26px -10px rgba(23, 57, 124, 0.45);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --header-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Fluid type scale */
  --t-hero: clamp(2.35rem, 1.5rem + 3.2vw, 3.9rem);
  --t-h2: clamp(1.75rem, 1.3rem + 1.7vw, 2.6rem);
  --t-h3: clamp(1.02rem, 0.99rem + 0.2vw, 1.15rem);
  --t-lead: clamp(1.03rem, 1rem + 0.28vw, 1.18rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body.m-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.0125rem;
  line-height: 1.62;
  letter-spacing: -0.006em;
  color: var(--ink-2);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "cv05", "ss03";
}

/* Calm cool aurora, no heavy texture: reads engineered, not decorative --------*/
body.m-body::before {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(34vw 30vw at 82% -4%, rgba(46, 105, 204, 0.16), transparent 62%),
    radial-gradient(26vw 24vw at 6% 6%, rgba(109, 84, 207, 0.1), transparent 60%),
    radial-gradient(40vw 34vw at 52% 98%, rgba(23, 57, 124, 0.07), transparent 66%),
    linear-gradient(180deg, var(--canvas-2) 0%, var(--canvas) 45%, #f4f6f9 100%);
}

a {
  color: var(--brand-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand-700);
}

img,
svg {
  max-width: 100%;
}

::selection {
  background: rgba(46, 105, 204, 0.16);
  color: var(--brand-900);
}

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.m-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--brand-700);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  text-decoration: none;
}

.m-skip:focus {
  left: 0;
  color: #fff;
}

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

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

/* -----------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------------- */
.m-header {
  position: sticky;
  top: 0;
  z-index: 120;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.m-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.m-header.is-scrolled {
  background: rgba(252, 252, 253, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 8px 24px -20px rgba(10, 28, 64, 0.5);
}

.m-header.is-scrolled::after {
  opacity: 1;
}

.m-header__inner {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: height 0.3s var(--ease);
}

.m-header.is-scrolled .m-header__inner {
  height: 64px;
}

/* Logo */
.m-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.m-logo:hover {
  color: var(--ink);
}

.m-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--brand-500), var(--brand-800));
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  flex: none;
}

.m-logo__mark svg {
  display: block;
}

.m-logo__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.m-logo__word span {
  color: var(--brand-600);
}

/* Nav */
.m-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-inline: auto;
}

.m-nav a {
  position: relative;
  color: var(--ink-3);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.m-nav a:hover,
.m-nav a.is-active {
  color: var(--ink);
  background: rgba(12, 20, 37, 0.04);
}

.m-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.m-link-quiet {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.m-link-quiet:hover {
  color: var(--ink);
  background: rgba(12, 20, 37, 0.05);
}

/* Buttons -------------------------------------------------------------------- */
.m-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.72rem 1.25rem;
  font-family: var(--font);
  font-size: 0.945rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.m-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.m-btn:active {
  transform: translateY(0);
}

.m-btn svg {
  transition: transform 0.24s var(--ease);
}

.m-btn:hover svg {
  transform: translateX(3px);
}

.m-btn--primary {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
  color: #fff;
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.m-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.22), transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
}

.m-btn--primary:hover {
  color: #fff;
  box-shadow: 0 18px 34px -14px rgba(23, 57, 124, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.m-btn--primary:hover::before {
  transform: translateX(120%);
}

.m-btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--sh-xs);
}

.m-btn--ghost:hover {
  color: var(--ink);
  border-color: var(--brand-400);
  box-shadow: var(--sh-sm);
}

.m-btn--light {
  background: #fff;
  color: var(--brand-700);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5);
}

.m-btn--light:hover {
  color: var(--brand-800);
}

.m-btn--lg {
  padding: 0.88rem 1.6rem;
  font-size: 1rem;
}

.m-btn--block {
  width: 100%;
}

/* Mobile nav ----------------------------------------------------------------- */
.m-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.m-nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.m-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.m-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.m-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.m-mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(252, 252, 253, 0.98);
  backdrop-filter: blur(16px);
  padding: 0.85rem 0 1.35rem;
}

.m-mobile-panel.is-open {
  display: block;
  animation: m-drop 0.28s var(--ease);
}

@keyframes m-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.m-mobile-panel .m-container {
  display: grid;
  gap: 0.15rem;
}

.m-mobile-panel a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 0.78rem 0.5rem;
  border-radius: 10px;
}

.m-mobile-panel a:hover {
  background: rgba(12, 20, 37, 0.04);
}

.m-mobile-panel__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .m-nav,
  .m-header__actions {
    display: none;
  }

  .m-nav-toggle {
    display: flex;
  }
}

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */
.m-hero {
  position: relative;
  padding: clamp(2rem, 4.5vw, 3.75rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.m-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: center;
}

.m-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.85rem 0.42rem 0.65rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 1.4rem;
  box-shadow: var(--sh-xs);
}

.m-badge__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  flex: none;
}

.m-badge__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 105, 204, 0.5);
  animation: m-pulse 2.6s var(--ease-soft) infinite;
}

@keyframes m-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.m-hero h1 {
  font-family: var(--display);
  font-size: var(--t-hero);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.02;
  margin: 0 0 1.15rem;
  color: var(--ink);
  max-width: 19ch;
  text-wrap: balance;
}

.m-hero h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--brand-600) 8%, var(--violet) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.m-hero__lead {
  font-size: var(--t-lead);
  color: var(--ink-3);
  max-width: 46ch;
  margin: 0 0 1.9rem;
}

.m-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.m-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-3);
  font-size: 0.91rem;
  max-width: 40ch;
  margin: 0;
}

.m-trust svg {
  flex: none;
  margin-top: 0.18rem;
  color: var(--brand-600);
}

.m-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.m-hero__note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.855rem;
  font-weight: 550;
  color: var(--ink-2);
}

.m-hero__note svg {
  color: var(--verified);
  flex: none;
}

/* Product mockup ------------------------------------------------------------- */
.m-mockup {
  position: relative;
  perspective: 1600px;
  animation: m-rise 0.85s var(--ease) both;
}

@keyframes m-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

.m-mockup__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
  border: 1px solid #fff;
  box-shadow: var(--sh-lg);
  transform: rotateY(-6deg) rotateX(1.5deg);
  transition: transform 0.6s var(--ease);
}

.m-mockup:hover .m-mockup__frame {
  transform: rotateY(-2deg) translateY(-4px);
}

.m-mockup__window {
  position: relative;
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.m-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--line);
}

.m-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfe3ea;
}

.m-mockup__title {
  margin-left: 0.6rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.015em;
}

.m-mockup__pill {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.m-mockup__body {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 392px;
}

.m-mockup__side {
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: var(--canvas-2);
}

.m-mockup__main {
  padding: 1rem;
}

.m-mockup__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.65rem;
}

.m-mockup__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.m-mockup__photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--canvas);
}

.m-mockup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.m-mockup__photo--tall {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.m-mockup__meta {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
}

.m-mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.735rem;
  color: var(--ink-3);
}

.m-mockup__row strong {
  color: var(--ink);
  font-weight: 600;
}

.m-ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: var(--violet-100);
  border: 1px solid rgba(109, 84, 207, 0.2);
  color: #4b3aa8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 0.85rem;
}

.m-ai-chip svg {
  color: var(--violet);
}

.m-mockup__field {
  margin-bottom: 0.85rem;
}

.m-mockup__field strong {
  display: block;
  font-size: 0.66rem;
  color: var(--ink-4);
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.m-mockup__value {
  margin: 0;
  font-size: 0.865rem;
  color: var(--ink);
  line-height: 1.5;
  padding: 0.55rem 0.7rem;
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.m-mockup__value--muted {
  color: var(--ink-3);
  font-size: 0.82rem;
}

.m-skeleton {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e9ecf2 25%, #f4f6f9 50%, #e9ecf2 75%);
  background-size: 240% 100%;
  animation: m-shimmer 1.9s linear infinite;
  margin-top: 0.45rem;
}

.m-skeleton:nth-child(2) {
  width: 82%;
}

.m-skeleton:nth-child(3) {
  width: 58%;
}

@keyframes m-shimmer {
  from {
    background-position: 120% 0;
  }
  to {
    background-position: -120% 0;
  }
}

.m-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.m-tags span {
  font-size: 0.715rem;
  padding: 0.28rem 0.58rem;
  border-radius: 7px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-weight: 500;
}

.m-mockup__actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.m-mini {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.755rem;
  font-weight: 600;
  font-family: var(--font);
}

.m-mini--ghost {
  background: var(--surface);
  border-color: var(--line-2);
  color: var(--ink-2);
}

.m-mini--solid {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 6px 14px -8px rgba(23, 57, 124, 0.7);
}

/* Floating trust cards around the mockup */
.m-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(12px);
  font-size: 0.795rem;
  font-weight: 600;
  color: var(--ink);
  animation: m-bob 6s var(--ease-soft) infinite;
}

.m-float__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand-100);
  color: var(--brand-700);
  flex: none;
}

.m-float--review .m-float__icon {
  background: var(--verified-100);
  color: var(--verified);
}

.m-float small {
  display: block;
  font-size: 0.7rem;
  font-weight: 450;
  color: var(--ink-4);
}

.m-float--oauth {
  left: -12%;
  top: -11%;
}

.m-float--review {
  right: -9%;
  bottom: -9%;
  animation-delay: -3s;
}

@keyframes m-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .m-float--oauth {
    left: -2%;
  }

  .m-float--review {
    right: -2%;
  }
}

@media (max-width: 920px) {
  .m-hero__grid {
    grid-template-columns: 1fr;
  }

  .m-hero h1 {
    max-width: none;
  }

  .m-mockup__frame {
    transform: none;
  }

  .m-mockup__body {
    grid-template-columns: 1fr;
  }

  .m-mockup__side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .m-float {
    display: none;
  }
}

/* -----------------------------------------------------------------------------
   Sections
   ----------------------------------------------------------------------------- */
.m-section {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.75rem) 0;
}

.m-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.45));
  border-block: 1px solid var(--line);
}

.m-section__head {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 3.5vw, 3.25rem);
}

.m-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.m-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.9rem;
}

.m-section__eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--brand-400);
}

.m-section__head--center .m-section__eyebrow::after {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--brand-400);
}

.m-section h2 {
  font-family: var(--display);
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: var(--ink);
  text-wrap: balance;
}

.m-section h2 em {
  font-style: normal;
  color: var(--brand-600);
}

.m-section__lead {
  margin: 0;
  color: var(--ink-3);
  font-size: var(--t-lead);
  max-width: 48ch;
}

.m-section__head--center .m-section__lead {
  margin-inline: auto;
}

/* Feature cards -------------------------------------------------------------- */
.m-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.m-card {
  position: relative;
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.m-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(46, 105, 204, 0.08), transparent 62%);
  pointer-events: none;
}

.m-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--violet));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.m-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--sh-md);
}

.m-card:hover::before,
.m-card:hover::after {
  opacity: 1;
}

.m-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-600);
  margin-bottom: 1.05rem;
  transition: transform 0.3s var(--ease);
}

.m-card:hover .m-card__icon {
  transform: translateY(-2px);
}

.m-card h3 {
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.026em;
  color: var(--ink);
}

.m-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .m-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .m-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Product showcase (real photography) ---------------------------------------- */
.m-showcase__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.m-shot {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--sh-md);
}

.m-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.m-shot figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: 0.755rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--sh-sm);
}

.m-shot figcaption svg {
  color: var(--brand-600);
  flex: none;
}

.m-check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.m-check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-3);
  font-size: 0.95rem;
}

.m-check-list strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.m-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--verified-100);
  color: var(--verified);
  flex: none;
  margin-top: 0.15rem;
}

.m-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}

.m-thumb {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.m-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.m-thumb:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.m-thumb:hover img {
  transform: scale(1.04);
}

.m-thumb figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 0.75rem 0.6rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92) 62%);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.m-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-4);
}

@media (max-width: 900px) {
  .m-showcase__grid {
    grid-template-columns: 1fr;
  }

  .m-thumbs {
    grid-template-columns: 1fr 1fr;
  }
}

/* Steps / timeline ----------------------------------------------------------- */
.m-steps {
  position: relative;
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
}

.m-steps::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-400), rgba(109, 84, 207, 0.4), transparent);
  opacity: 0.5;
}

.m-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.2rem 1.35rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  counter-increment: step;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.m-step:hover {
  transform: translateX(4px);
  box-shadow: var(--sh-md);
  border-color: var(--line-2);
}

.m-step__num {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--brand-600), var(--brand-800));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex: none;
}

.m-step__num::before {
  content: "0" counter(step);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.m-step h3 {
  font-family: var(--display);
  margin: 0 0 0.25rem;
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: -0.026em;
  color: var(--ink);
}

.m-step p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.94rem;
}

.m-step--review {
  border-color: rgba(6, 122, 75, 0.28);
  background: linear-gradient(110deg, var(--surface) 40%, var(--verified-100) 160%);
}

.m-step__flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.755rem;
  font-weight: 600;
  color: #05613c;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(6, 122, 75, 0.24);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

/* AI flow diagram ------------------------------------------------------------ */
.m-flow {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  text-align: center;
}

.m-flow__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.m-flow__pill {
  padding: 0.72rem 1.15rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  font-weight: 600;
  font-size: 0.91rem;
  color: var(--ink);
  box-shadow: var(--sh-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.m-flow__pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.m-flow__pill--accent {
  background: linear-gradient(150deg, var(--violet), #3a2c8c);
  color: #fff;
  border-color: transparent;
  padding: 0.85rem 1.7rem;
  font-size: 0.98rem;
  box-shadow: 0 14px 28px -12px rgba(93, 73, 196, 0.55);
}

.m-flow__pill--soft {
  background: var(--verified-100);
  border-color: rgba(6, 122, 75, 0.26);
  color: #05613c;
  padding: 0.8rem 1.5rem;
}

.m-flow__pill--final {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-800));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-brand);
}

.m-flow__arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(46, 105, 204, 0.08), rgba(46, 105, 204, 0.45), rgba(46, 105, 204, 0.08));
  position: relative;
}

.m-flow__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
  transform: translateX(-50%);
  animation: m-travel 2.6s var(--ease-soft) infinite;
}

@keyframes m-travel {
  0% {
    top: -3px;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.m-flow__note {
  margin: 1.4rem 0 0;
  font-size: 0.885rem;
  color: var(--ink-4);
}

/* Security ------------------------------------------------------------------- */
.m-trust-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.35rem;
  align-items: start;
}

.m-shield {
  position: relative;
  padding: 1.9rem 1.7rem;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--brand-800) 0%, var(--brand-900) 100%);
  color: #fff;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.m-shield::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 140, 228, 0.4), transparent 68%);
}

.m-shield__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 1.25rem;
  color: #fff;
}

.m-shield h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.032em;
  margin: 0 0 0.6rem;
  color: #fff;
}

.m-shield p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.m-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.m-trust-item {
  padding: 1.3rem 1.35rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.m-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.m-trust-item h3 {
  font-family: var(--display);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.4rem;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.026em;
  color: var(--ink);
}

.m-trust-item h3 svg {
  color: var(--brand-600);
  flex: none;
}

.m-trust-item p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.92rem;
}

.m-trust-item--wide {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .m-trust-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .m-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ ------------------------------------------------------------------------ */
.m-faq {
  display: grid;
  gap: 0.6rem;
}

.m-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0 1.2rem;
  box-shadow: var(--sh-xs);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.m-faq details[open] {
  box-shadow: var(--sh-md);
  border-color: var(--line-2);
}

.m-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.99rem;
  letter-spacing: -0.024em;
  color: var(--ink);
  padding: 1.1rem 2.5rem 1.1rem 0;
  position: relative;
}

.m-faq summary::-webkit-details-marker {
  display: none;
}

.m-faq summary::after,
.m-faq summary::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--brand-600);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.m-faq summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.m-faq details[open] summary::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.m-faq details p {
  margin: 0 0 1.15rem;
  color: var(--ink-3);
  max-width: 64ch;
  animation: m-fade 0.3s var(--ease);
}

@keyframes m-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}

/* Final CTA ------------------------------------------------------------------ */
.m-cta {
  padding: 0 0 clamp(3.25rem, 7vw, 5.5rem);
}

.m-cta__panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 5.5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(55% 55% at 84% 4%, rgba(109, 84, 207, 0.4), transparent 62%),
    radial-gradient(50% 50% at 10% 96%, rgba(46, 105, 204, 0.45), transparent 62%),
    linear-gradient(150deg, var(--brand-800) 0%, var(--brand-900) 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.m-cta__panel > * {
  position: relative;
  z-index: 1;
}

.m-cta__panel h2 {
  font-family: var(--display);
  font-size: var(--t-h2);
  font-weight: 800;
  margin: 0 0 0.8rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  text-wrap: balance;
}

.m-cta__panel p {
  margin: 0 auto 1.85rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--t-lead);
}

.m-cta__fine {
  margin: 1.3rem auto 0 !important;
  font-size: 0.84rem !important;
  color: rgba(255, 255, 255, 0.62) !important;
}

/* Footer -------------------------------------------------------------------- */
.m-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: clamp(2.5rem, 5vw, 3.25rem) 0 2rem;
}

.m-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

.m-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.m-footer__brand:hover {
  color: var(--ink);
}

.m-footer__tag {
  color: var(--ink-3);
  font-size: 0.92rem;
  max-width: 30ch;
  margin: 0;
}

.m-footer h4 {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 0.9rem;
}

.m-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.m-footer a:not(.m-footer__brand) {
  text-decoration: none;
  color: var(--ink-3);
  font-size: 0.935rem;
  transition: color 0.2s var(--ease);
}

.m-footer a:not(.m-footer__brand):hover {
  color: var(--brand-600);
}

.m-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-bottom: 1.15rem;
}

.m-disclaimer p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.91rem;
  line-height: 1.6;
  max-width: 62rem;
}

.m-copy {
  margin: 0;
  color: var(--ink-4);
  font-size: 0.87rem;
}

@media (max-width: 860px) {
  .m-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .m-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------------------------
   Inner pages: legal, contact, auth
   ----------------------------------------------------------------------------- */
.m-page-hero {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 1.6rem;
}

.m-page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.06;
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.m-page-hero p {
  margin: 0;
  color: var(--ink-3);
  max-width: 44rem;
  font-size: var(--t-lead);
}

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

.m-legal article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--sh-md);
}

.m-legal .m-updated {
  display: inline-block;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.85rem;
}

.m-legal h2 {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.1rem 0 0.65rem;
  letter-spacing: -0.03em;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.m-legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.m-legal p,
.m-legal li {
  color: var(--ink-3);
}

.m-legal ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.m-legal a {
  font-weight: 600;
}

/* Forms --------------------------------------------------------------------- */
.m-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.15rem);
  box-shadow: var(--sh-md);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.m-form-card label,
.m-auth-card label {
  display: block;
  font-size: 0.855rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.m-field {
  margin-bottom: 1.1rem;
}

.m-form-card .form-control,
.m-auth-card .form-control,
.m-form-card textarea,
.m-auth-card textarea {
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 0.72rem 0.9rem;
  font-size: 0.945rem;
  font-family: var(--font);
  color: var(--ink);
  box-shadow: var(--sh-xs);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.m-form-card .form-control:focus,
.m-auth-card .form-control:focus,
.m-form-card textarea:focus,
.m-auth-card textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(46, 105, 204, 0.13);
  outline: none;
}

.m-form-card .form-control::placeholder,
.m-auth-card .form-control::placeholder {
  color: var(--ink-4);
}

.m-form-card .form-check-input,
.m-auth-card .form-check-input {
  border-color: var(--line-2);
  margin-top: 0.28rem;
}

.m-form-card .form-check-input:checked,
.m-auth-card .form-check-input:checked {
  background-color: var(--brand-600);
  border-color: var(--brand-600);
}

.m-form-card .form-check-input:focus,
.m-auth-card .form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(46, 105, 204, 0.13);
  border-color: var(--brand-500);
}

.m-form-card .form-check-label,
.m-auth-card .form-check-label {
  font-weight: 450;
  font-size: 0.915rem;
  color: var(--ink-3);
  margin-bottom: 0;
}

.m-alert {
  border-radius: 12px;
  padding: 0.9rem 1.05rem;
  margin-bottom: 1.2rem;
  font-size: 0.915rem;
  border: 1px solid transparent;
}

.m-alert--info {
  background: var(--brand-50);
  color: var(--brand-800);
  border-color: var(--brand-100);
}

.m-alert--error {
  background: #fef3f2;
  color: #91221a;
  border-color: #fecdca;
}

.m-alert--success {
  background: var(--verified-100);
  color: #05613c;
  border-color: rgba(6, 122, 75, 0.22);
}

.m-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0 2rem;
}

.m-contact-card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}

.m-contact-card h3 {
  font-family: var(--display);
  font-size: 0.945rem;
  font-weight: 700;
  letter-spacing: -0.024em;
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.m-contact-card p {
  margin: 0;
  font-size: 0.89rem;
  color: var(--ink-3);
}

.m-contact-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.1rem 0 0 !important;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  font-size: 0.875rem !important;
  font-weight: 550;
  color: var(--ink-2) !important;
}

.m-contact-meta svg {
  color: var(--verified);
  flex: none;
}

/* Honeypot: off-screen for people, irresistible for bots. */
.m-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Auth --------------------------------------------------------------------- */
.m-auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 2rem 0 4rem;
}

.m-auth-card {
  width: min(448px, calc(100% - 2.5rem));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 4vw, 2.3rem);
  box-shadow: var(--sh-lg);
  animation: m-rise 0.5s var(--ease) both;
}

.m-auth-card h1 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 1.2rem 0 0.35rem;
  color: var(--ink);
}

.m-auth-sub {
  color: var(--ink-3);
  margin: 0 0 1.65rem;
  font-size: 0.94rem;
}

.m-auth-footer {
  margin: 1.4rem 0 0;
  text-align: center;
  color: var(--ink-3);
  font-size: 0.915rem;
}

.m-auth-footer a {
  font-weight: 600;
  text-decoration: none;
}

.m-auth-footer a:hover {
  text-decoration: underline;
}

.m-auth-aside {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-4);
  font-size: 0.845rem;
}

.m-auth-aside svg {
  color: var(--verified);
  flex: none;
  margin-top: 0.15rem;
}

.m-forgot {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.m-forgot:hover {
  text-decoration: underline;
}

/* Reveal ------------------------------------------------------------------- */
.m-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--d, 0ms);
}

.m-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@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;
  }

  .m-reveal {
    opacity: 1;
    transform: none;
  }

  .m-mockup__frame {
    transform: none;
  }
}
