/* TatShop — light grey / purple theme */
:root {
  --purple: #6f5bc9;
  --purple-bright: #7f6bd4;
  --purple-soft: #9584de;
  --purple-rgb: 111 91 201;
  --purple-wash: rgb(111 91 201 / 0.14);
  --amber: #e8a54b;
  --amber-bright: #f0b85e;
  --amber-wash: rgb(232 165 75 / 0.16);

  /* Section bands — stepped enough to read as rhythm */
  --bg: #e6e6ea;
  --bg-soft: #f2f2f5;
  --bg-night: #d5d7df;
  --bg-elevated: #f7f7f9;
  --bg-panel: #ffffff;
  --bg-panel-soft: #c9cbd4;
  --ink: #1a1a1c;
  --text: #2a2a2e;
  --text-muted: #6a6a72;
  --text-dim: #8e8e96;
  --border: rgb(0 0 0 / 0.09);
  --border-strong: rgb(0 0 0 / 0.14);
  --white: #ffffff;
  --glass: rgb(0 0 0 / 0.04);
  --glass-strong: rgb(0 0 0 / 0.07);
  --radius: 1.35rem;
  --radius-sm: 0.9rem;

  --font-display: "Bebas Neue", sans-serif;
  --font-mono: "Intel One Mono", ui-monospace, monospace;
  --font-body: "Roboto", sans-serif;

  --nav-h: 3.75rem;
  --nav-top: 0.85rem;
  --nav-stack: calc(var(--nav-top) + var(--nav-h));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* —— Nav (Liquid Glass) —— */
.site-header {
  position: sticky;
  top: var(--nav-top);
  z-index: 50;
  width: min(calc(100% - 1.5rem), 64rem);
  margin: var(--nav-top) auto 0;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(0 0 0 / 0.1);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 8px 32px rgb(0 0 0 / 0.08);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 0.55rem 0 1.25rem;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 100%;
  line-height: 0;
}

.nav__wordmark {
  display: block;
  height: 2.5rem;
  width: auto;
  filter: brightness(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 160ms var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--ink);
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.85rem;
}

.nav__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 160ms var(--ease);
}

.nav__text:hover,
.nav__text:focus-visible {
  color: var(--ink);
}

.nav__cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
  background: var(--amber);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--amber-bright);
  transform: translateY(-1px);
}

.nav__cta:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.nav__link:focus-visible,
.nav__text:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* —— Hero —— */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-stack));
  padding: calc(var(--nav-stack) + 2.75rem) 1.25rem 0;
  overflow: clip;
  background:
    radial-gradient(
      ellipse 90% 55% at 50% 0%,
      rgb(255 255 255 / 0.85) 0%,
      transparent 62%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, #fafafb 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  animation: rise 800ms var(--ease) 80ms forwards;
}

.hero__subtitle {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
  opacity: 0;
  animation: rise 700ms var(--ease) 180ms forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: rise 700ms var(--ease) 280ms forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition:
    background 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}

.btn--primary {
  color: #111;
  background: var(--amber);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--amber-bright);
  transform: translateY(-1px);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.btn--secondary {
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--glass-strong);
  border-color: rgb(var(--purple-rgb) / 0.45);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  opacity: 0;
  animation: rise 700ms var(--ease) 360ms forwards;
}

.hero__meta-domain {
  color: var(--purple);
}

.hero__meta-sep {
  opacity: 0.5;
}

.hero__meta-link {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgb(0 0 0 / 0.2);
  transition: color 160ms var(--ease);
}

.hero__meta-link:hover,
.hero__meta-link:focus-visible {
  color: var(--purple);
}

/* —— Product stage —— */
.hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding: 0 1rem 0;
  opacity: 0;
  animation: rise 900ms var(--ease) 440ms forwards;
}

.hero__glow {
  display: none;
}

.hero__devices {
  position: relative;
  width: min(100%, 58rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0.25rem;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero__browser-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  margin-right: 4.5rem;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.65) inset,
    0 30px 80px rgb(0 0 0 / 0.14);
  overflow: hidden;
  transform-origin: 70% 80%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateY(3deg) rotateX(1deg) skewY(0.12deg);
}

.hero__browser-chrome {
  display: flex;
  align-items: flex-end;
  min-height: 2.25rem;
  padding: 0.4rem 0.4rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
}

.hero__tabs {
  display: flex;
  align-items: flex-end;
  padding-left: 0.15rem;
}

.hero__tab {
  display: inline-flex;
  align-items: center;
  height: 1.75rem;
  padding: 0 0.9rem;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 0.55rem 0.55rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
}

.hero__tab--active {
  color: var(--ink);
  background: var(--bg-elevated);
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--bg-elevated);
}

.hero__phone-frame {
  position: absolute;
  right: 0.5rem;
  bottom: -0.35rem;
  z-index: 5;
  width: min(34%, 13rem);
  aspect-ratio: 9 / 19;
  padding: 0.4rem;
  border-radius: 1.35rem;
  background: var(--bg-soft);
  border: 1px solid var(--bg-soft);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.7) inset,
    0 28px 60px rgb(0 0 0 / 0.12);
  transform-origin: 30% 90%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateY(-4deg) rotateX(1.25deg) skewY(-0.15deg) translateZ(48px);
}

.hero__screenshot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-panel);
}

.hero__screenshot--desktop {
  aspect-ratio: 16 / 10;
  min-height: clamp(14rem, 36vw, 22rem);
}

.hero__screenshot--mobile {
  height: 100%;
  border-radius: 0.85rem;
  background: var(--bg-elevated);
}

.hero__screenshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__screenshot-label {
  position: relative;
  z-index: 0;
  max-width: 80%;
  padding: 0.55rem 0.8rem;
  border: 1px dashed rgb(var(--purple-rgb) / 0.4);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--purple);
  background: rgb(255 255 255 / 0.55);
}

.hero__screenshot--mobile .hero__screenshot-label {
  font-size: 0.72rem;
  padding: 0.4rem 0.5rem;
}

/* —— What is TatShop —— */
.product {
  position: relative;
  padding: 5.5rem 1.25rem 6rem;
  border-top: 1px solid var(--border);
  background: var(--bg-panel);
}

.product__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.product__header {
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.product__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.product__subtitle {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
}

.product__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-pane {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.03) inset;
}

.product-pane__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.product-pane__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.product-pane__copy {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.product-pane__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.product-pane__list li {
  position: relative;
  padding-left: 1.05rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.product-pane__list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--purple);
}

.product-pane__shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-panel);
}

.product-pane__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-pane__placeholder {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 0.45rem 0.7rem;
  border: 1px dashed rgb(var(--purple-rgb) / 0.4);
  border-radius: 0.55rem;
  background: rgb(255 255 255 / 0.55);
}

/* —— Features —— */
.features {
  position: relative;
  padding: 6.5rem 1.25rem 7rem;
  border-top: 1px solid var(--border);
  background: var(--bg-night);
}

.features__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.features__header {
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.features__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.features__subtitle {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  border-radius: var(--radius);
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.75rem 1.5rem 1.9rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 180ms var(--ease);
}

.feature:nth-child(3n) {
  border-right: 0;
}

.feature:hover {
  background: rgb(var(--purple-rgb) / 0.12);
}

.feature__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

.feature__value {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

/* —— Industry focus —— */
.focus {
  position: relative;
  padding: 5.5rem 1.25rem 5.75rem;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 40%,
      rgb(var(--purple-rgb) / 0.12) 0%,
      transparent 68%
    ),
    linear-gradient(180deg, var(--bg-soft) 0%, #f5f4fa 100%);
}

.focus__inner {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.focus__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.focus__title-aside {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.focus__copy {
  margin: 1.15rem 0 0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.focus__cta {
  margin-top: 1.75rem;
}

/* —— Pricing —— */
.pricing {
  position: relative;
  padding: 6.5rem 1.25rem 7.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-panel);
}

.pricing__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.pricing__header {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.pricing__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.pricing__subtitle {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
}

.pricing-explainer {
  max-width: 32rem;
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgb(var(--purple-rgb) / 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(
      ellipse 90% 80% at 0% 0%,
      rgb(var(--purple-rgb) / 0.08) 0%,
      transparent 55%
    ),
    rgb(255 255 255 / 0.82);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.9) inset;
}

.pricing-explainer__title {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.pricing-explainer__copy {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}

.pricing-explainer__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pricing-explainer__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-muted);
}

.pricing-explainer__list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--purple);
}

.pricing-calc {
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.35rem 1.15rem;
  border: 1px solid rgb(0 0 0 / 0.1);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.72);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.9) inset;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.pricing-calc__label {
  display: block;
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.pricing-calc__controls {
  display: grid;
  grid-template-columns: 1fr 4.5rem;
  gap: 0.85rem;
  align-items: center;
}

.pricing-calc__range {
  width: 100%;
  appearance: none;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--purple) var(--seat-progress, 0%),
    var(--bg-panel-soft) var(--seat-progress, 0%),
    var(--bg-panel-soft) 100%
  );
  outline: none;
}

.pricing-calc__range::-webkit-slider-thumb {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid #111;
  box-shadow: 0 2px 8px rgb(var(--purple-rgb) / 0.4);
  cursor: pointer;
}

.pricing-calc__range::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid #111;
  box-shadow: 0 2px 8px rgb(var(--purple-rgb) / 0.4);
  cursor: pointer;
}

.pricing-calc__range:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

.pricing-calc__input {
  width: 100%;
  height: 2.5rem;
  margin: 0;
  padding: 0 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-panel);
  font-family: var(--font-mono);
  font-size: 1rem;
  text-align: center;
  color: var(--ink);
  outline: none;
}

.pricing-calc__input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-wash);
}

.pricing-calc__hint {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

.pricing-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgb(var(--purple-rgb) / 0.35);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.9) inset;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.pricing-contact[hidden] {
  display: none;
}

.pricing-contact__copy {
  margin: 0;
  flex: 1 1 14rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text);
}

.pricing-contact__cta {
  flex-shrink: 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
  max-width: 44rem;
  margin: 0 auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.03) inset;
  transition:
    opacity 180ms var(--ease),
    filter 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.plan.is-active {
  border-color: rgb(232 165 75 / 0.45);
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgb(232 165 75 / 0.14), transparent 55%),
    var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgb(232 165 75 / 0.12) inset,
    0 14px 36px rgb(232 165 75 / 0.1);
}

.plan__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

.plan.is-dimmed {
  opacity: 0.38;
  filter: grayscale(0.4);
}

.plan.is-dimmed .plan__cta {
  pointer-events: none;
}

.plan__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.plan__audience {
  margin: 0.4rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.1rem 0 0;
}

.plan__amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.plan__period {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}

.plan__seat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.85rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.925rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.plan__seat-extra {
  color: var(--text-muted);
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 1.35rem 0 0;
  list-style: none;
  border-top: 1px solid var(--border);
  flex: 1;
}

.plan__features li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-muted);
}

.plan__features li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--purple);
}

.plan__cta {
  margin-top: 1.75rem;
  width: 100%;
}

.pricing__disclaimer {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
}

/* —— Customers —— */
.customers {
  position: relative;
  padding: 3.75rem 1.25rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-night);
}

.customers__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.customers__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.75rem;
}

.customers__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.customers__subtitle {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-muted);
}

.customers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  transition: transform 160ms var(--ease);
}

.customer:hover,
.customer:focus-visible {
  transform: translateY(-2px);
}

.customer:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.customer__shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.03) inset;
}

.customer__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.customer__placeholder {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 0.4rem 0.65rem;
  border: 1px dashed rgb(var(--purple-rgb) / 0.4);
  border-radius: 0.45rem;
  background: rgb(255 255 255 / 0.55);
}

.customer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0.15rem;
}

.customer__name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.customer:hover .customer__url,
.customer:focus-visible .customer__url {
  color: var(--purple);
}

.customer__url {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 160ms var(--ease);
}

/* —— Signup CTA —— */
.signup {
  position: relative;
  padding: 6.5rem 1.25rem 8rem;
  border-top: 1px solid var(--border);
  overflow: clip;
  background:
    radial-gradient(
      ellipse 85% 60% at 50% 0%,
      rgb(232 165 75 / 0.14) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 70% 55% at 80% 100%,
      rgb(var(--purple-rgb) / 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg-soft) 0%, #f3f1f7 100%);
}

.signup__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
}

.signup__header {
  margin: 0 0 2.5rem;
  text-align: center;
}

.signup__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.signup__subtitle {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.signup-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem;
  border: 1px solid rgb(0 0 0 / 0.1);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.72);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.9) inset;
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
}

.signup-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.field__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field__optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
}

.field__input {
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 160ms var(--ease),
    background 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.field__input::placeholder {
  color: var(--text-dim);
}

.field__input:hover {
  border-color: rgb(var(--purple-rgb) / 0.4);
}

.field__input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-wash);
}

.field__input--area {
  resize: vertical;
  min-height: 6.5rem;
  line-height: 1.5;
}

.field--choices {
  gap: 0.7rem;
}

.field--choices .field__label {
  padding-bottom: 0.55rem;
  margin-bottom: 0;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
}

.choice input {
  margin: 0.2rem 0 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--purple);
  flex-shrink: 0;
}

.signup-form__submit {
  margin-top: 0.35rem;
  width: 100%;
}

.signup-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.signup-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-form__status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
}

.signup-form__status[hidden] {
  display: none;
}

.signup-form__status.is-success {
  color: var(--ink);
  background: rgb(46 160 100 / 0.12);
  border: 1px solid rgb(46 160 100 / 0.28);
}

.signup-form__status.is-error {
  color: var(--ink);
  background: rgb(200 60 60 / 0.1);
  border: 1px solid rgb(200 60 60 / 0.28);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 3rem 1.25rem 2.5rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
  max-width: 64rem;
  margin: 0 auto;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 0;
}

.site-footer__app-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 22.5%;
  background:
    linear-gradient(
      165deg,
      rgb(255 255 255 / 0.95) 0%,
      rgb(236 236 240 / 0.92) 48%,
      rgb(220 220 228 / 0.9) 100%
    );
  border: 1px solid rgb(255 255 255 / 0.55);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 -0.5px 0 rgb(0 0 0 / 0.06) inset,
    0 10px 24px rgb(0 0 0 / 0.12),
    0 2px 6px rgb(0 0 0 / 0.08);
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.site-footer__app-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0.55) 0%,
    rgb(255 255 255 / 0.12) 42%,
    transparent 58%
  );
  pointer-events: none;
}

.site-footer__icon {
  position: relative;
  z-index: 1;
  width: 84%;
  height: auto;
}

.site-footer__wordmark {
  display: block;
  height: 2rem;
  width: auto;
  filter: brightness(0);
}

.site-footer__tagline {
  margin: 0.85rem 0 0;
  max-width: 16rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-muted);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.2rem;
}

.site-footer__nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 160ms var(--ease);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--ink);
}

.site-footer__nav a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
  text-align: right;
  padding-top: 0.2rem;
}

.site-footer__domain {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.925rem;
  letter-spacing: 0.04em;
  color: var(--purple);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
}


/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__meta,
  .hero__stage {
    opacity: 1;
    animation: none;
  }

  .hero__browser-frame,
  .hero__phone-frame {
    transform: none !important;
    will-change: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-top: 0.65rem;
  }

  .site-header {
    width: min(calc(100% - 1rem), 64rem);
  }

  .nav {
    grid-template-columns: 1fr auto;
    padding: 0 0.4rem 0 1rem;
  }

  .nav__links,
  .nav__text {
    display: none;
  }
}

@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .pricing-contact {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing-contact__cta {
    width: 100%;
  }

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

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

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

  .feature:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .feature:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: calc(var(--nav-stack) + 2rem);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero__stage {
    margin-top: 3rem;
  }

  .hero__browser-frame {
    margin-right: 0;
    width: 100%;
  }

  .hero__phone-frame {
    width: min(38%, 9.5rem);
    right: 0.35rem;
    bottom: 0;
  }

  .features {
    padding: 4.5rem 1.25rem 5rem;
  }

  .product {
    padding: 4rem 1.25rem 4.5rem;
  }

  .product__header {
    margin-bottom: 2.25rem;
  }

  .features__header {
    margin-bottom: 2.5rem;
  }

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

  .feature,
  .feature:nth-child(2n),
  .feature:nth-child(3n) {
    border-right: 0;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .focus {
    padding: 4rem 1.25rem 4.25rem;
  }

  .pricing {
    padding: 4.5rem 1.25rem 5.5rem;
  }

  .pricing__header {
    margin-bottom: 2.5rem;
  }

  .customers {
    padding: 3rem 1.25rem 3.25rem;
  }

  .customers__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.35rem;
  }

  .customers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .signup {
    padding: 4.5rem 1.25rem 5.5rem;
  }

  .signup-form {
    padding: 1.35rem;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__meta {
    align-items: flex-start;
    text-align: left;
  }
}

/* —— Legal pages (Terms, etc.) —— */
.legal {
  position: relative;
  margin-top: calc(-1 * var(--nav-stack));
  padding: calc(var(--nav-stack) + 2.5rem) 1.25rem 5rem;
  background:
    radial-gradient(
      ellipse 90% 55% at 50% 0%,
      rgb(255 255 255 / 0.85) 0%,
      transparent 62%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, #fafafb 100%);
}

.legal__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal__header {
  margin: 0 0 2.5rem;
}

.legal__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.legal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.legal__meta {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
}

.legal__body {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.03) inset;
}

.legal__body > :first-child {
  margin-top: 0;
}

.legal__body > :last-child {
  margin-bottom: 0;
}

.legal__body h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.legal__body p,
.legal__body li {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
}

.legal__body p {
  margin: 0 0 1rem;
}

.legal__body ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.15rem;
}

.legal__body li {
  margin: 0 0 0.45rem;
}

.legal__body a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal__body a:hover,
.legal__body a:focus-visible {
  color: var(--purple-bright);
}

.legal__body strong {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 640px) {
  .legal {
    padding: calc(var(--nav-stack) + 1.5rem) 1rem 3.5rem;
  }

  .legal__body {
    padding: 1.5rem 1.15rem;
  }
}
