:root {
  --ink: #171a16;
  --muted: #686d63;
  --paper: #f5f2e9;
  --paper-bright: #fcfbf6;
  --line: rgba(23, 26, 22, 0.13);
  --lime: #c8ff38;
  --lime-strong: #b6ef20;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.profile-links a > b,
.demo-action-list span > b {
  color: var(--muted);
  font-size: 20px;
  margin-left: auto;
}

.profile-link-icon i,
.feature-icon i {
  font-size: 19px;
}

.demo-action-list span > i.fa-solid,
.demo-action-list span > i.fa-brands {
  align-items: center;
  display: inline-flex;
  font-size: 17px;
  justify-content: center;
}

.plans-grid-original {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}

@media (max-width: 760px) {
  .plans-grid-original {
    grid-template-columns: 1fr;
  }
}

body::before {
  background-image: radial-gradient(rgba(23, 26, 22, 0.15) 0.45px, transparent 0.55px);
  background-size: 4px 4px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: fixed;
  z-index: 9998;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

.scroll-progress {
  background: linear-gradient(90deg, #95c900, var(--lime));
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  width: 100%;
  z-index: 100;
}

.site-header {
  align-items: center;
  background: rgba(248, 246, 239, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 86px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    height 240ms ease;
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.site-header.is-compact {
  background: rgba(252, 251, 246, 0.86);
  box-shadow: 0 12px 35px rgba(31, 34, 28, 0.08);
  height: 70px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
  gap: 13px;
  letter-spacing: -0.04em;
  justify-self: start;
}

.brand:hover .brand-waves i {
  animation: brand-signal 680ms ease both;
}

.brand:hover .brand-waves i:nth-child(2) {
  animation-delay: 55ms;
}

.brand:hover .brand-waves i:nth-child(3) {
  animation-delay: 110ms;
}

.brand-waves {
  display: flex;
  height: 40px;
  position: relative;
  width: 32px;
}

.brand-waves::after {
  background: var(--ink);
  border-radius: 99px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 16px;
  width: 7px;
}

.brand-waves i {
  border: 3px solid var(--lime-strong);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  display: block;
  position: absolute;
  transform: rotate(45deg);
}

.brand-waves i:nth-child(1) {
  height: 16px;
  left: -1px;
  top: 11px;
  width: 16px;
}

.brand-waves i:nth-child(2) {
  height: 27px;
  left: -2px;
  top: 5px;
  width: 27px;
}

.brand-waves i:nth-child(3) {
  height: 38px;
  left: -3px;
  top: 0;
  width: 38px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(32px, 4vw, 64px);
  justify-content: center;
}

.mobile-nav-actions {
  display: none;
}

.main-nav a,
.login-link {
  color: #30342e;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.main-nav a::after,
.login-link::after {
  background: var(--lime-strong);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.login-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-self: end;
}

.button {
  align-items: center;
  background: var(--lime);
  border: 1px solid #a9db27;
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(166, 213, 40, 0.2);
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0 22px;
  position: relative;
  isolation: isolate;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button::after {
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  content: "";
  inset: -30% auto -30% -45%;
  pointer-events: none;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 32%;
  z-index: -1;
}

.button:hover {
  background: #d4ff5e;
  box-shadow: 0 13px 28px rgba(166, 213, 40, 0.3);
  transform: translateY(-2px);
}

.button:hover::after {
  left: 125%;
}

.button:focus-visible,
.menu-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(159, 210, 23, 0.55);
  outline-offset: 4px;
}

.button-small {
  min-height: 46px;
  padding-inline: 24px;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-backdrop {
  background: rgba(18, 22, 16, 0.34);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease, visibility 220ms ease;
  visibility: hidden;
  z-index: 990;
  backdrop-filter: blur(4px);
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  min-height: 900px;
  overflow: hidden;
  padding: 150px clamp(28px, 5.2vw, 78px) 72px;
  position: relative;
}

.hero-grid-bg {
  animation: grid-drift 22s linear infinite;
  background-image:
    linear-gradient(rgba(25, 29, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 29, 23, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 86px 0 0 48%;
  mask-image: linear-gradient(to right, transparent, black 20%);
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  animation: glow-breathe 6s ease-in-out infinite;
  background: radial-gradient(
    circle,
    rgba(196, 255, 44, 0.25) 0,
    rgba(196, 255, 44, 0.08) 35%,
    transparent 70%
  );
  filter: blur(10px);
  height: 760px;
  pointer-events: none;
  position: absolute;
  right: -90px;
  top: 60px;
  width: 900px;
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.hero-copy.hero-enter {
  animation: hero-copy-in 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  align-items: center;
  color: #52584d;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.eyebrow-dot {
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
  background: var(--lime-strong);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(182, 239, 32, 0.15);
  height: 8px;
  width: 8px;
}

.hero h1 {
  font-size: clamp(64px, 6.3vw, 104px);
  font-weight: 800;
  letter-spacing: -0.068em;
  line-height: 0.94;
  margin: 0;
  max-width: 800px;
}

.hero-copy > p {
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  margin: 31px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button-hero {
  border-radius: 15px;
  font-size: 17px;
  min-height: 60px;
  padding: 0 28px;
}

.button-outline {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(23, 26, 22, 0.65);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 26, 22, 0.09);
}

.trust-row {
  color: #666b62;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 650;
  gap: 22px;
  margin-top: 28px;
}

.trust-row span {
  white-space: nowrap;
}

.hero-visual {
  --nfc-rx: 0deg;
  --nfc-ry: 0deg;
  --nfc-x: 0px;
  --nfc-y: 0px;
  --profile-rx: 0deg;
  --profile-ry: 0deg;
  --profile-x: 0px;
  --profile-y: 0px;
  height: 670px;
  margin-left: 20px;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.hero-visual.hero-enter {
  animation: hero-visual-in 980ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nfc-card {
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(145deg, #242622, #10120f);
  border: 1px solid rgba(201, 255, 57, 0.7);
  border-radius: 32px;
  box-shadow:
    0 45px 90px rgba(27, 30, 24, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.14);
  height: 485px;
  position: absolute;
  right: -78px;
  top: 92px;
  transform: translate3d(var(--nfc-x), var(--nfc-y), 0) rotate(14deg)
    rotateX(var(--nfc-rx)) rotateY(var(--nfc-ry));
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 335px;
}

.nfc-card::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.nfc-mark {
  height: 80px;
  left: 50%;
  position: absolute;
  top: 138px;
  transform: translateX(-50%);
  width: 92px;
}

.nfc-mark::before {
  background: var(--lime);
  border-radius: 99px;
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  top: 37px;
  width: 7px;
}

.nfc-mark span {
  animation: nfc-signal 2.2s ease-in-out infinite;
  border: 4px solid var(--lime);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  position: absolute;
  transform: rotate(45deg);
  transform-origin: center;
}

.nfc-mark span:nth-child(1) {
  animation-delay: -0.48s;
  height: 26px;
  left: 5px;
  top: 27px;
  width: 26px;
}

.nfc-mark span:nth-child(2) {
  animation-delay: -0.24s;
  height: 48px;
  left: 4px;
  top: 16px;
  width: 48px;
}

.nfc-mark span:nth-child(3) {
  height: 70px;
  left: 3px;
  top: 5px;
  width: 70px;
}

.nfc-card-footer {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  left: 30px;
  position: absolute;
  text-transform: uppercase;
}

.nfc-card-footer strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
  letter-spacing: 0.08em;
}

.nfc-card-footer span {
  font-size: 9px;
  letter-spacing: 0.22em;
  margin-top: 3px;
}

.profile-card {
  animation: card-rise 760ms 180ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow:
    0 35px 75px rgba(30, 34, 26, 0.19),
    0 3px 8px rgba(30, 34, 26, 0.08);
  left: 12%;
  min-height: 594px;
  padding: 40px 32px 28px;
  position: absolute;
  text-align: center;
  top: 18px;
  transform: translate3d(var(--profile-x), var(--profile-y), 45px)
    rotateX(var(--profile-rx)) rotateY(var(--profile-ry));
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 375px;
  z-index: 5;
}

.live-badge {
  align-items: center;
  background: rgba(200, 255, 56, 0.4);
  border-radius: 999px;
  color: #31400f;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: 0.055em;
  padding: 7px 11px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
}

.live-badge span {
  animation: pulse 1.8s ease-in-out infinite;
  background: #6f9d00;
  border-radius: 99px;
  height: 7px;
  width: 7px;
}

.profile-photo {
  background: #ecebe6;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(27, 30, 24, 0.12);
  height: 116px;
  margin: 5px auto 13px;
  overflow: hidden;
  width: 116px;
}

.profile-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-card h2 {
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.profile-title {
  color: #6b7067;
  font-size: 15px;
  margin: 8px 0 0;
}

.profile-company {
  font-size: 16px;
  font-weight: 750;
  margin: 10px 0 0;
}

.profile-divider {
  background: var(--lime-strong);
  border-radius: 10px;
  height: 3px;
  margin: 14px auto 18px;
  width: 48px;
}

.profile-links {
  display: grid;
  gap: 9px;
}

.profile-links a {
  align-items: center;
  background: #fdfdfb;
  border: 1px solid #e6e6e0;
  border-radius: 13px;
  box-shadow: 0 6px 14px rgba(31, 34, 28, 0.07);
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 32px 1fr auto;
  min-height: 54px;
  padding: 7px 13px 7px 8px;
  text-align: left;
  transition:
    border 160ms ease,
    transform 160ms ease;
}

.profile-links a:hover {
  border-color: #b5df37;
  box-shadow: 0 11px 24px rgba(31, 34, 28, 0.1);
  transform: translate3d(4px, -2px, 0);
}

.profile-link-icon {
  align-items: center;
  background: rgba(200, 255, 56, 0.62);
  border-radius: 10px;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

@keyframes card-rise {
  from {
    opacity: 0;
    filter: blur(9px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 6px rgba(111, 157, 0, 0.12);
  }
}

@keyframes hero-copy-in {
  from {
    clip-path: inset(0 0 22% 0);
    filter: blur(8px);
    opacity: 0;
  }
  to {
    clip-path: inset(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes hero-visual-in {
  from {
    filter: blur(12px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes grid-drift {
  to {
    background-position: 72px 36px;
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes eyebrow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(182, 239, 32, 0.12);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(182, 239, 32, 0.04);
  }
}

@keyframes nfc-signal {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(45deg) scale(0.94);
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(200, 255, 56, 0.36));
    opacity: 1;
    transform: rotate(45deg) scale(1.035);
  }
}

@keyframes brand-signal {
  0% {
    opacity: 0.35;
    transform: rotate(45deg) scale(0.82);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes demo-live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 168, 9, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(127, 168, 9, 0.13);
  }
}

@keyframes auth-card-in {
  from {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-ready [data-reveal] {
  filter: blur(7px);
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.motion-ready [data-reveal].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .plan-card.popular[data-reveal] {
  transform: translate3d(0, 22px, 0);
}

.motion-ready .plan-card.popular[data-reveal].is-visible {
  transform: translate3d(0, -10px, 0);
}

.motion-ready .feature-card[data-reveal].is-visible:hover {
  transform: translate3d(0, -4px, 0);
}

.motion-ready .product-card[data-reveal].is-visible:hover {
  transform: translate3d(0, -7px, 0);
}

.motion-ready .plan-card[data-reveal].is-visible:hover {
  transform: translate3d(0, -6px, 0);
}

.motion-ready .plan-card.popular[data-reveal].is-visible:hover {
  transform: translate3d(0, -16px, 0);
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 30px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    padding-inline: 34px;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 80px);
  }

  .hero-visual {
    margin-left: 0;
    transform: scale(0.9);
    transform-origin: center right;
  }
}

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

  .main-nav {
    align-items: stretch;
    background: rgba(252, 251, 246, 0.98);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 28px 70px rgba(27, 32, 23, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 12px;
    max-height: calc(100dvh - 98px);
    opacity: 0;
    overflow-y: auto;
    padding: 12px 18px 20px;
    pointer-events: none;
    position: fixed;
    right: 12px;
    top: 86px;
    transform: translate3d(0, -12px, 0) scale(0.985);
    transform-origin: top center;
    transition: opacity 200ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1), visibility 200ms ease;
    visibility: hidden;
    z-index: 1002;
  }

  .site-header.is-compact .main-nav {
    top: 70px;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(23, 26, 22, 0.08);
    padding: 16px 4px;
  }

  /* Tablet görünümünde üstteki Panelim / Profilimi Yönet butonları
     kullanılmaya devam eder; açılır menüde ikinci kez gösterilmez. */
  .mobile-nav-actions {
    display: none;
    gap: 10px;
    padding-top: 14px;
  }

  .mobile-nav-actions .mobile-login,
  .mobile-nav-actions .button {
    border: 0;
    justify-content: center;
    text-align: center;
  }

  .mobile-nav-actions .mobile-login {
    background: #ece9e0;
    border-radius: 12px;
  }

  .menu-button {
    background: rgba(23, 26, 22, 0.06);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 13px;
    display: inline-flex;
    position: relative;
    z-index: 1003;
  }

  .menu-button[aria-expanded="true"] {
    background: var(--lime);
    border-color: #a9db27;
  }

  .hero {
    display: block;
    padding: 150px 28px 80px;
  }

  .hero-copy {
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(56px, 10vw, 78px);
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    margin: 58px auto -20px;
    max-width: 660px;
    transform: none;
  }

  .profile-card {
    left: 12%;
  }

  .nfc-card {
    right: 1%;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 74px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-waves {
    transform: scale(0.84);
    transform-origin: left center;
    width: 27px;
  }

  .login-link,
  .header-actions .button-small {
    display: none;
  }

  /* Telefon görünümünde masaüstü aksiyonları gizlendiği için
     giriş ve profil butonlarını açılır menü içinde göster. */
  .mobile-nav-actions {
    display: grid;
  }

  .main-nav {
    left: 8px;
    right: 8px;
    top: 74px;
  }

  .hero {
    min-height: auto;
    padding: 120px 18px 52px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.5vw, 61px);
    letter-spacing: -0.06em;
  }

  .hero-copy > p {
    font-size: 17px;
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button-hero {
    width: 100%;
  }

  .trust-row {
    font-size: 12px;
    gap: 10px 14px;
  }

  .hero-visual {
    height: 560px;
    margin-top: 40px;
    width: 100%;
  }

  .profile-card {
    left: 50%;
    min-height: 530px;
    padding: 34px 20px 22px;
    top: 0;
    transform: translateX(-50%);
    width: min(330px, 92vw);
  }

  .profile-photo {
    height: 96px;
    width: 96px;
  }

  .profile-card h2 {
    font-size: 27px;
  }

  .profile-links a {
    min-height: 50px;
  }

  .nfc-card {
    height: 390px;
    opacity: 0.2;
    right: -160px;
    top: 92px;
    width: 270px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Landing page — sections below the fold */

.section {
  padding: 118px clamp(24px, 5.2vw, 78px);
}

.section-heading {
  margin-bottom: 54px;
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: #667248;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-heading h2,
.demo-copy h2,
.faq-heading h2,
.final-cta h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.99;
  margin: 0;
}

.section-heading > p,
.demo-copy > p,
.faq-heading > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 0;
}

.value-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 5.2vw, 78px);
}

.value-strip > div {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  overflow: hidden;
  padding: 39px clamp(18px, 3vw, 48px);
  position: relative;
  transition: background 240ms ease;
}

.value-strip > div::after {
  background: linear-gradient(
    100deg,
    transparent,
    rgba(200, 255, 56, 0.12),
    transparent
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.value-strip > div:hover {
  background: rgba(255, 255, 255, 0.035);
}

.value-strip > div:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.value-strip > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.value-strip strong {
  color: var(--lime);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.value-strip span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.features-section {
  background: var(--paper-bright);
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: #f5f3ec;
  border: 1px solid rgba(23, 26, 22, 0.09);
  border-radius: 24px;
  min-height: 286px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card::before {
  background: radial-gradient(circle, rgba(200, 255, 56, 0.26), transparent 68%);
  content: "";
  height: 240px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -120px;
  transform: scale(0.65);
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 240px;
}

.feature-card:hover {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(27, 30, 24, 0.09);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.feature-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 14px;
  display: flex;
  height: 50px;
  justify-content: center;
  position: relative;
  transition:
    border-radius 240ms ease,
    transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 50px;
}

.feature-card:hover .feature-icon {
  border-radius: 50%;
  transform: rotate(-7deg) scale(1.06);
}

.feature-arrow {
  transition:
    color 180ms ease,
    transform 240ms ease;
}

.feature-card:hover .feature-arrow {
  color: #5f7d12;
  transform: translate(3px, -3px);
}

.feature-card h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin: 30px 0 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 330px;
}

.feature-arrow {
  bottom: 24px;
  color: #798065;
  font-size: 20px;
  position: absolute;
  right: 28px;
}

.demo-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  overflow: hidden;
  position: relative;
}

.demo-section::before {
  background: radial-gradient(circle, rgba(200, 255, 56, 0.14), transparent 67%);
  content: "";
  height: 800px;
  pointer-events: none;
  position: absolute;
  right: -220px;
  top: 0;
  width: 800px;
}

.demo-copy,
.demo-stage {
  position: relative;
  z-index: 2;
}

.demo-copy .section-kicker {
  color: var(--lime);
}

.demo-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.demo-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 28px;
}

.demo-form label,
.editor-card label {
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
}

.demo-form input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  color: white;
  font: inherit;
  font-size: 14px;
  min-height: 48px;
  outline: none;
  padding: 0 14px;
}

.demo-form input:focus {
  border-color: var(--lime);
}

.demo-form label:first-child {
  grid-column: 1 / -1;
}

.demo-colors {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-top: 18px;
}

.demo-color,
.accent-dot {
  border: 3px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  height: 28px;
  padding: 0;
  transition: transform 160ms ease;
  width: 28px;
}

.demo-color:hover,
.accent-dot:hover {
  transform: scale(1.1);
}

.demo-color.is-active,
.accent-dot.is-active {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px currentColor;
}

.demo-color.lime,
.accent-dot.lime {
  background: #c8ff38;
  color: #c8ff38;
}

.demo-color.blue,
.accent-dot.blue {
  background: #4c8dff;
  color: #4c8dff;
}

.demo-color.violet,
.accent-dot.violet {
  background: #ad70ff;
  color: #ad70ff;
}

.demo-color.sand,
.accent-dot.sand {
  background: #d9bc8b;
  color: #d9bc8b;
}

.demo-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.demo-profile {
  --accent: var(--lime);
  background: #fdfdf9;
  border-radius: 32px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38);
  color: var(--ink);
  min-height: 650px;
  padding: 34px;
  position: relative;
  transform: rotateY(-2deg) rotateX(1deg);
  transform-style: preserve-3d;
  transition:
    box-shadow 380ms ease,
    transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: min(440px, 100%);
}

.demo-stage:hover .demo-profile {
  box-shadow: 0 55px 120px rgba(0, 0, 0, 0.46);
  transform: rotateY(1.5deg) rotateX(-0.6deg) translateY(-5px);
}

.accent-blue {
  --accent: #4c8dff !important;
}

.accent-violet {
  --accent: #ad70ff !important;
}

.accent-sand {
  --accent: #d9bc8b !important;
}

.accent-lime {
  --accent: var(--lime) !important;
}

.demo-profile::after {
  background: var(--accent);
  border-radius: 99px;
  content: "";
  height: 4px;
  left: 34px;
  position: absolute;
  top: 0;
  width: 88px;
}

.demo-profile-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.demo-avatar {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  height: 90px;
  justify-content: center;
  letter-spacing: -0.04em;
  width: 90px;
}

.demo-live {
  align-items: center;
  background: #f0f0ea;
  border-radius: 99px;
  color: #5b6055;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 7px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.demo-live i {
  animation: demo-live-pulse 1.9s ease-in-out infinite;
  background: #7fa809;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.demo-profile h3 {
  font-size: 34px;
  letter-spacing: -0.045em;
  margin: 25px 0 6px;
}

.demo-profile > p {
  color: #73786e;
  font-size: 15px;
  margin: 0;
}

.demo-profile > strong {
  display: block;
  font-size: 17px;
  margin-top: 10px;
}

.demo-action-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.demo-action-list > span {
  align-items: center;
  background: #f4f4ef;
  border: 1px solid #e8e8e1;
  border-radius: 12px;
  display: grid;
  font-size: 12px;
  font-weight: 750;
  gap: 8px;
  grid-template-columns: 31px 1fr auto;
  min-height: 52px;
  padding: 6px 10px 6px 7px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.demo-action-list > span:hover {
  background: white;
  border-color: color-mix(in srgb, var(--accent) 60%, #d8d8d0);
  transform: translateX(3px);
}

.demo-action-list > span > i {
  align-items: center;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.demo-action-list > span > b {
  font-size: 18px;
  font-weight: 400;
}

.cards-section {
  background: #ece9e0;
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 26, 22, 0.09);
  border-radius: 26px;
  min-width: 0;
  overflow: hidden;
  padding: 42px 28px 26px;
  position: relative;
  transition:
    box-shadow 300ms ease,
    transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card::before {
  background: radial-gradient(circle, rgba(200, 255, 56, 0.22), transparent 66%);
  content: "";
  height: 360px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -180px;
  top: -180px;
  transform: scale(0.72);
  transition:
    opacity 300ms ease,
    transform 500ms ease;
  width: 360px;
}

.product-card:hover {
  box-shadow: 0 28px 65px rgba(28, 31, 25, 0.12);
  transform: translateY(-7px);
}

.product-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.featured-product {
  background: rgba(200, 255, 56, 0.19);
  border-color: rgba(145, 187, 32, 0.35);
}

.product-badge {
  background: var(--ink);
  border-radius: 99px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
}

.physical-card {
  aspect-ratio: 1.586 / 1;
  background: #161815;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  box-shadow: 0 28px 45px rgba(22, 25, 20, 0.2);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 24px auto 44px;
  max-width: 370px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transform: rotate(-4deg);
  transform-style: preserve-3d;
  transition:
    box-shadow 420ms ease,
    transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card:hover .physical-card {
  box-shadow: 0 38px 65px rgba(22, 25, 20, 0.25);
  transform: perspective(900px) rotate(0) rotateX(3deg) rotateY(-3deg)
    translateY(-8px);
}

.physical-card::before {
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.26) 47%,
    transparent 73%
  );
  content: "";
  inset: -30%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-70%) rotate(8deg);
  transition:
    opacity 220ms ease,
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
  z-index: 1;
}

.product-card:hover .physical-card::before {
  opacity: 1;
  transform: translateX(70%) rotate(8deg);
}

.physical-card::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  content: "";
  inset: 0;
  opacity: 0.32;
  position: absolute;
}

.physical-card.signature {
  background: linear-gradient(145deg, #d5ff67, #b7ee20);
  border-color: #91c009;
  color: var(--ink);
  transform: rotate(3deg);
}

.physical-card.metal {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.17), transparent 25%, rgba(255, 255, 255, 0.08) 60%, transparent),
    #30322f;
  transform: rotate(-2deg);
}

.physical-logo,
.physical-name {
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.physical-logo {
  font-size: 23px;
  letter-spacing: 0.08em;
}

.physical-name {
  align-self: flex-end;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-info {
  align-items: flex-end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.product-info h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.product-info p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.product-info > strong {
  font-size: 21px;
}

.pricing-note {
  color: #777b71;
  font-size: 12px;
  margin: 26px 0 0;
  text-align: center;
}

.pricing-note strong {
  color: var(--ink);
}

.proof-section {
  background: var(--ink);
  color: white;
}

.proof-section .section-kicker {
  color: var(--lime);
}

.proof-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  min-height: 330px;
  padding: 30px;
  transition: background 220ms ease, border-color 220ms ease, transform 260ms ease;
}

.proof-grid article:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 255, 56, 0.5);
  transform: translateY(-5px);
}

.proof-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 15px;
  color: var(--ink);
  display: inline-flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  margin-bottom: 42px;
  width: 48px;
}

.proof-grid small {
  color: var(--lime);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-grid h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 12px 0 14px;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.proof-cta {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 30px;
}

.proof-cta .button-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.steps-section {
  background: var(--paper-bright);
  padding: 118px clamp(24px, 5.2vw, 78px);
}

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

.steps-grid article {
  border-right: 1px solid var(--line);
  min-height: 300px;
  padding: 42px clamp(22px, 3vw, 46px);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article > span {
  color: #a1a698;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps-grid h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 84px 0 14px;
}

.steps-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.pricing-section {
  background: var(--paper);
}

.plans-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1200px;
}

.plan-card {
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 34px;
  position: relative;
  transition:
    border-color 260ms ease,
    box-shadow 300ms ease,
    transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.plan-card:hover {
  border-color: rgba(129, 164, 35, 0.42);
  box-shadow: 0 26px 65px rgba(28, 31, 25, 0.1);
  transform: translateY(-6px);
}

.plan-card.popular {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: translateY(-10px);
}

.plan-card.popular:hover {
  box-shadow: 0 34px 75px rgba(23, 26, 22, 0.24);
  transform: translateY(-16px);
}

.plan-badge {
  background: var(--lime);
  border-radius: 99px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  padding: 8px 12px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 24px;
}

.plan-card h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.plan-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 270px;
}

.plan-card.popular > p,
.plan-card.popular li {
  color: rgba(255, 255, 255, 0.62);
}

.plan-price {
  align-items: baseline;
  display: flex;
  gap: 7px;
  margin: 36px 0 26px;
}

.plan-price strong {
  font-size: 48px;
  letter-spacing: -0.06em;
}

.plan-price span {
  color: var(--muted);
  font-size: 13px;
}

.plan-card.popular .plan-price span {
  color: rgba(255, 255, 255, 0.5);
}

.plan-card ul {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0 0 32px;
  padding: 28px 0 0;
}

.plan-card.popular ul {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-card li {
  color: #5f645a;
  font-size: 14px;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
}

.faq-section {
  background: var(--paper-bright);
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(450px, 1.25fr);
}

.faq-heading > a {
  color: #65753f;
  display: inline-block;
  font-size: 14px;
  font-weight: 750;
  margin-top: 26px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 750;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  transition: color 180ms ease;
}

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

.faq-list summary span {
  align-items: center;
  background: #ecece5;
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 34px;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list summary:hover {
  color: #627b25;
}

.faq-list summary:hover span {
  background: var(--lime);
}

.faq-list details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 17px 54px 0 0;
}

.final-cta {
  align-items: center;
  background: var(--lime);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  overflow: hidden;
  padding: 82px clamp(24px, 5.2vw, 78px);
  position: relative;
}

.final-cta::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 68%);
  content: "";
  height: 520px;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  right: -150px;
  top: -250px;
  transform: scale(0.85);
  transition:
    opacity 500ms ease,
    transform 700ms ease;
  width: 520px;
}

.final-cta:hover::before {
  opacity: 0.8;
  transform: scale(1.05);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .section-kicker {
  color: #526617;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  color: #52603a;
  font-size: 17px;
  margin: 19px 0 0;
}

.final-cta .button {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 15px 30px rgba(23, 26, 22, 0.2);
  color: white;
  flex: 0 0 auto;
}

.site-footer {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  padding: 70px clamp(24px, 5.2vw, 78px) 32px;
}

.footer-brand {
  color: white;
}

.site-footer > div:first-child > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  margin: 16px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 11px;
  gap: 24px;
  grid-column: 1 / -1;
  padding-top: 27px;
}

/* Authentication */

.auth-page {
  align-items: center;
  background:
    radial-gradient(circle at 78% 42%, rgba(200, 255, 56, 0.2), transparent 26%),
    linear-gradient(rgba(23, 26, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 22, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 110px 24px 50px;
  position: relative;
}

.auth-brand {
  left: clamp(24px, 4vw, 60px);
  position: absolute;
  top: 30px;
}

.auth-card {
  animation: auth-card-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 36px 90px rgba(31, 34, 28, 0.14);
  max-width: 580px;
  padding: clamp(34px, 5vw, 60px);
  width: 100%;
}

.auth-card h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.auth-card > p:not(.auth-switch) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 24px 0;
}

.auth-benefits {
  background: #f3f3ed;
  border-radius: 18px;
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 28px 0;
  padding: 22px;
}

.auth-benefits li {
  color: #53584e;
  font-size: 14px;
}

.auth-button {
  min-height: 58px;
  width: 100%;
}

.auth-card small {
  color: #8a8e85;
  display: block;
  font-size: 10px;
  line-height: 1.5;
  margin: 16px auto 0;
  max-width: 400px;
  text-align: center;
}

.auth-switch {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin: 28px 0 0;
  padding-top: 24px;
  text-align: center;
}

.auth-switch a {
  color: #5a7519;
  font-weight: 800;
}

.auth-card-login {
  max-width: 520px;
}

/* Member dashboard */

.dashboard {
  background: #efede6;
  min-height: 100vh;
}

.dashboard-header {
  align-items: center;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 80px;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 58px);
}

.dashboard-user {
  align-items: center;
  display: flex;
  gap: 20px;
}

.dashboard-user span {
  color: #5f645a;
  font-size: 13px;
}

.dashboard-user a {
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  padding: 10px 13px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  margin: 0 auto;
  max-width: 1500px;
  min-height: calc(100vh - 80px);
}

.editor-pane {
  padding: 50px clamp(24px, 4vw, 58px) 90px;
}

.editor-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.editor-heading h1 {
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.055em;
  margin: 0;
}

.publish-switch {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  gap: 10px;
}

.switch {
  background: #d5d5cf;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  height: 28px;
  padding: 3px;
  transition: background 180ms ease;
  width: 48px;
}

.switch i {
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
  display: block;
  height: 22px;
  transition: transform 180ms ease;
  width: 22px;
}

.switch.is-on {
  background: #9acb18;
}

.switch.is-on i {
  transform: translateX(20px);
}

.editor-card {
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 16px;
  padding: 28px;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.editor-card:focus-within {
  border-color: rgba(154, 199, 34, 0.42);
  box-shadow: 0 18px 42px rgba(31, 34, 28, 0.07);
  transform: translateY(-2px);
}

.editor-card h2 {
  font-size: 18px;
  margin: 0 0 24px;
}

.editor-card-title p {
  color: var(--muted);
  font-size: 12px;
  margin: -15px 0 22px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-card label {
  color: #5d6258;
}

.editor-card input,
.editor-card textarea {
  background: white;
  border: 1px solid #dbdcd5;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 12px 13px;
  resize: vertical;
  width: 100%;
}

.editor-card input {
  min-height: 46px;
}

.editor-card input:focus,
.editor-card textarea:focus {
  border-color: #9fc621;
  box-shadow: 0 0 0 3px rgba(180, 229, 43, 0.15);
}

.form-span {
  grid-column: 1 / -1;
}

.slug-input {
  align-items: center;
  background: white;
  border: 1px solid #dbdcd5;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}

.slug-input span {
  color: #8a8e85;
  font-size: 12px;
  padding-left: 12px;
  white-space: nowrap;
}

.slug-input input {
  border: 0;
  box-shadow: none !important;
}

.privacy-toggles {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
  padding-top: 22px;
}

.privacy-toggles label {
  align-items: center;
  flex-direction: row;
}

.privacy-toggles input {
  accent-color: #8fb716;
  min-height: auto;
  width: auto;
}

.editor-footer {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.save-message {
  color: #a14436;
  font-size: 12px;
  margin: 0 auto 0 0;
}

.save-message.ok {
  color: #608112;
}

.preview-pane {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 60px 60px;
  padding: 50px clamp(24px, 4vw, 58px);
}

.preview-sticky {
  position: sticky;
  top: 40px;
}

.preview-topline {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.preview-topline a {
  color: var(--lime);
}

.mini-profile {
  --accent: var(--lime);
  animation: auth-card-in 720ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  background: #fcfcf8;
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  margin: 0 auto;
  max-width: 390px;
  min-height: 580px;
  padding: 36px 30px;
  text-align: center;
}

.mini-avatar {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  font-size: 26px;
  font-weight: 850;
  height: 92px;
  justify-content: center;
  margin: 0 auto 20px;
  width: 92px;
}

.mini-profile h2 {
  font-size: 28px;
  letter-spacing: -0.045em;
  margin: 0;
}

.mini-profile > p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0;
}

.mini-profile > strong {
  display: block;
  font-size: 15px;
  margin-top: 8px;
}

.mini-profile > small {
  color: #777c72;
  display: block;
  line-height: 1.6;
  margin: 18px auto 0;
  max-width: 280px;
}

.mini-actions {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.mini-actions span {
  background: #f0f0eb;
  border: 1px solid #e5e5de;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
  padding: 14px;
  text-align: left;
}

.mini-actions span::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 10px;
  width: 7px;
}

.accent-picker {
  display: flex;
  gap: 13px;
  justify-content: center;
  margin-top: 24px;
}

.accent-picker .accent-dot.is-active {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px currentColor;
}

.dashboard-loading {
  align-items: center;
  display: flex;
  font-size: 16px;
  justify-content: center;
  min-height: calc(100vh - 80px);
}

/* Public profile */

.public-profile-page {
  --accent: var(--lime);
  align-items: center;
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 32%),
    var(--ink);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 38px 18px;
}

.public-profile-card {
  animation: auth-card-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  background: #fafaf6;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  max-width: 450px;
  min-height: 680px;
  padding: 34px;
  position: relative;
  text-align: center;
  width: 100%;
}

.public-profile-brand {
  align-items: center;
  color: #777b72;
  display: flex;
  font-size: 11px;
  font-weight: 850;
  gap: 7px;
  justify-content: flex-end;
  letter-spacing: 0.12em;
}

.public-profile-brand i {
  background: var(--accent);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.public-avatar {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  font-size: 31px;
  font-weight: 850;
  height: 112px;
  justify-content: center;
  margin: 18px auto 18px;
  width: 112px;
}

.public-profile-card h1 {
  font-size: 34px;
  letter-spacing: -0.05em;
  margin: 0;
}

.public-title {
  color: var(--muted);
  margin: 7px 0 0;
}

.public-company {
  font-weight: 800;
  margin: 9px 0 0;
}

.public-bio {
  color: #747970;
  font-size: 13px;
  line-height: 1.6;
  margin: 18px auto 0;
  max-width: 330px;
}

.public-actions {
  display: grid;
  gap: 9px;
  margin-top: 26px;
}

.public-actions > a,
.public-actions details {
  background: #efefe9;
  border: 1px solid #e3e3dc;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}

.public-actions > a,
.public-actions summary {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 15px;
}

.public-actions summary {
  cursor: pointer;
  list-style: none;
}

.public-actions summary::-webkit-details-marker {
  display: none;
}

.public-actions details p {
  border-top: 1px solid #deded6;
  color: #5e6359;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  padding: 14px 15px;
}

.save-contact {
  background: var(--accent);
  border-radius: 12px;
  display: block;
  font-size: 14px;
  font-weight: 850;
  margin-top: 12px;
  padding: 16px;
}

.powered-by {
  color: #92958e;
  display: block;
  font-size: 10px;
  margin-top: 22px;
}

.powered-by a {
  color: #667c2a;
  font-weight: 750;
}

.profile-not-found {
  color: white;
  max-width: 620px;
  text-align: center;
}

.profile-not-found .section-kicker {
  color: var(--lime);
}

.profile-not-found h1 {
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0;
}

.profile-not-found p {
  color: rgba(255, 255, 255, 0.6);
  margin: 24px 0 30px;
}

@media (max-width: 1050px) {
  .feature-grid,
  .product-grid,
  .plans-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid .feature-card:last-child,
  .product-grid .product-card:last-child,
  .plans-grid .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .product-grid .product-card:last-child,
  .plans-grid .plan-card:last-child {
    margin-inline: auto;
    max-width: 560px;
    width: 100%;
  }

  .demo-section {
    grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .preview-pane {
    grid-row: 1;
    min-height: auto;
    padding-block: 44px;
  }

  .preview-sticky {
    position: static;
  }

  .mini-profile {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .section,
  .steps-section {
    padding-block: 82px;
  }

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

  .value-strip > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    min-height: 125px;
  }

  .feature-grid,
  .product-grid,
  .plans-grid,
  .proof-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid .feature-card:last-child,
  .product-grid .product-card:last-child,
  .plans-grid .plan-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 250px;
  }

  .demo-section {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    text-align: center;
  }

  .demo-form {
    text-align: left;
  }

  .demo-copy > .button {
    margin-inline: auto;
  }

  .steps-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 230px;
  }

  .steps-grid h3 {
    margin-top: 50px;
  }

  .plan-card.popular {
    transform: none;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-grid article {
    min-height: 280px;
  }

  .proof-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-wrap: wrap;
    grid-column: auto;
  }

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

  .form-span {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .section-heading h2,
  .demo-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: 39px;
  }

  .value-strip {
    padding-inline: 12px;
  }

  .value-strip strong {
    font-size: 20px;
  }

  .value-strip span {
    font-size: 11px;
  }

  .demo-form {
    grid-template-columns: 1fr;
  }

  .demo-form label:first-child {
    grid-column: auto;
  }

  .demo-profile {
    min-height: 600px;
    padding: 25px 18px;
  }

  .demo-action-list {
    grid-template-columns: 1fr;
  }

  .physical-card {
    margin-top: 35px;
  }

  .dashboard-header {
    height: 72px;
  }

  .dashboard-header .brand {
    font-size: 19px;
  }

  .dashboard-user span {
    display: none;
  }

  .editor-pane {
    padding-inline: 16px;
  }

  .editor-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .editor-card {
    padding: 21px 18px;
  }

  .privacy-toggles {
    align-items: flex-start;
    flex-direction: column;
  }

  .editor-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .editor-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .menu-backdrop {
    transition: none !important;
  }
}

/* VoxCard in-site physical card designer CTA */
.cards-editor-cta{margin:28px auto 0;max-width:1120px;border:1px solid rgba(15,23,42,.12);background:linear-gradient(135deg,#0f172a,#1e3a8a);border-radius:26px;padding:20px 22px;display:flex;align-items:center;justify-content:space-between;gap:22px;box-shadow:0 24px 60px rgba(15,23,42,.18);color:#fff}.cards-editor-cta>div{display:flex;align-items:center;gap:14px;min-width:0}.cards-editor-cta>div>span{width:48px;height:48px;flex:0 0 48px;border-radius:16px;background:rgba(217,249,157,.14);border:1px solid rgba(217,249,157,.24);display:grid;place-items:center;color:#d9f99d}.cards-editor-cta b{display:block;font-size:1rem}.cards-editor-cta p{margin:5px 0 0;color:rgba(255,255,255,.7);font-size:.82rem;line-height:1.55}.cards-editor-cta .button{flex:0 0 auto;background:#d9f99d;color:#102010;border-color:#d9f99d;white-space:nowrap}.cards-editor-cta .button:hover{background:#ecfccb}@media(max-width:760px){.cards-editor-cta{align-items:stretch;flex-direction:column;padding:18px}.cards-editor-cta .button{width:100%;justify-content:center}.cards-editor-cta>div{align-items:flex-start}}
