/* ---------- Reset & tokens ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* light / cream palette */
  --bg: #fdfbf7;
  --bg-elev: #f7f5f1;
  --bg-card: #ffffff;
  --bg-cream: #fff3ee;
  --bg-muted: #f0eee8;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --text: #1a1a1b;
  --text-dim: #6b6b6b;
  --text-mute: #9a9590;
  /* brand orange */
  --accent: #ff5c35;
  --accent-hover: #d94a24;
  --accent-soft: #ffe4d6;
  --accent-2: #ff8038;
  --accent-3: #ffb627;
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --sans: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

em {
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
  color: var(--accent);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #d94a24);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255, 92, 53, 0.4);
}

.logo-text {
  font-size: 17px;
}

.logo-img {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
}

.logo-wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer-brand .logo-img {
  height: 32px;
}

.footer-brand .logo-wordmark {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-dropdown-trigger {
  line-height: 1;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* ---------- Nav "Apps" dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover {
  color: var(--text);
}

.nav-dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  padding: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 26, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.03);
}

.nav-dropdown-title {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.nav-dropdown-desc {
  color: var(--text-dim);
  font-size: 12.5px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition:
    transform 0.15s ease,
    background 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 92, 53, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
}

/* Dropdown trigger chevron + hover bridge + Live link styling */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu::before {
  /* invisible bridge so cursor can move from trigger to menu without losing hover */
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -120px;
  left: -120px;
}

.orb-b {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
  bottom: -180px;
  right: -160px;
  opacity: 0.4;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
}

h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 24px auto 22px;
  font-weight: 700;
  max-width: 14ch;
}

.lede {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero-actions {
  display: inline-flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 92, 53, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 72px auto 0;
  max-width: 820px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent);
}

.stat-num {
  font-family: inherit;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--text);
}

.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 70px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---------- Hero lookbook strip ---------- */
.hero-lookbook {
  margin: 64px auto 0;
  text-align: center;
}

.lookbook-label {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.lookbook-thumb {
  flex: 0 0 auto;
  width: 180px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  transition: transform 0.4s ease;
  filter: saturate(0.92);
}

.lookbook-thumb:hover {
  transform: translateY(-4px);
  filter: saturate(1);
}

@media (max-width: 760px) {
  .lookbook-thumb {
    width: 140px;
  }
  @keyframes marquee-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 7px));
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Use case thumbnail ---------- */
.usecase-thumb {
  position: relative;
  margin: -28px -28px 20px;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.usecase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition:
    transform 0.4s ease,
    filter 0.3s ease;
}

.usecase-card:hover .usecase-thumb img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

.usecase-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 21, 26, 0.75) 100%);
  pointer-events: none;
}

/* ---------- Clients strip ---------- */
.clients-section {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent);
}

.clients-label {
  text-align: center;
  margin: 0 0 28px;
  color: var(--text-mute);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
}

.client-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-width: 180px;
  padding: 14px 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.client-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.client-tile img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.client-tile-pink {
  padding: 0;
  background: linear-gradient(135deg, #ffd5e1 0%, #fbb6c5 100%);
}

.client-tile-pink img {
  height: 100%;
  width: auto;
}

@media (max-width: 700px) {
  .clients-strip {
    gap: 18px 22px;
  }
  .client-tile {
    height: 58px;
    min-width: 140px;
    padding: 10px 20px;
  }
}

/* ---------- Generic section ---------- */
.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  font-weight: 700;
}

.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- Vision ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15px;
}

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

/* ---------- Product ---------- */
.product-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fff8e8);
}

.product-card-body {
  padding: 48px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(255, 92, 53, 0.3);
  font-weight: 600;
}

.product-card-body h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
  line-height: 1.18;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.feature-list strong {
  color: var(--text);
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card-visual {
  position: relative;
  background: var(--bg-cream);
  min-height: 380px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.visual-frame {
  position: relative;
  width: 88%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) hue-rotate(-8deg) brightness(0.95);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 92, 53, 0.25), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(10, 95, 209, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 16, 0.1) 0%, rgba(10, 10, 16, 0.55) 100%);
}

.visual-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 6px 12px 6px 6px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.visual-tag-mark {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 61, 0.5));
}

@media (max-width: 900px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-card-body {
    padding: 36px 28px;
  }
  .product-card-visual {
    min-height: 280px;
  }
}

.visual-chips {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 56px 22px 22px;
  align-content: flex-end;
  justify-content: flex-start;
  z-index: 2;
}

.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: rgba(8, 10, 16, 0.55);
  border: 1px solid var(--line-strong);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

/* ---------- Roles (sub-section of product) ---------- */
.roles-head {
  margin: 72px auto 32px;
  max-width: 720px;
  text-align: center;
}

.roles-head .eyebrow {
  margin-bottom: 16px;
}

.roles-head h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  margin: 14px 0 12px;
  font-weight: 700;
}

.roles-head p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15.5px;
}

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

.usecase-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.usecase-card:hover {
  border-color: rgba(255, 92, 53, 0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 92, 53, 0.05), var(--bg-card));
}

.usecase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(255, 92, 53, 0.25);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-start;
  margin-bottom: 16px;
}

.usecase-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 92, 53, 0.18);
  color: var(--accent);
  font-size: 13px;
}

.usecase-card h4 {
  font-size: 18.5px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
}

.usecase-card > p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0 0 20px;
  line-height: 1.6;
  flex: 1;
}

.usecase-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.4;
}

.usecase-num {
  font-family: inherit;
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(120deg, #ff8038 0%, #ff5c35 55%, #d94a24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

@media (max-width: 980px) {
  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ---------- Use case CTA ---------- */
.usecase-cta {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px dashed rgba(255, 92, 53, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 92, 53, 0.04), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.usecase-cta p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 56ch;
}

/* ---------- TinTin key metrics strip ---------- */
.pf-metrics {
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 26px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent);
  text-align: center;
}

.pf-metric {
  padding: 4px 18px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pf-metric:last-child {
  border-right: none;
}

.pf-metric-num {
  font-family: inherit;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1;
  background: linear-gradient(120deg, #ff8038 0%, #ff5c35 55%, #d94a24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pf-metric-label {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  max-width: 32ch;
}

@media (max-width: 800px) {
  .pf-metrics {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .pf-metric {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 12px;
  }
  .pf-metric:last-child {
    border-bottom: none;
  }
}

/* ---------- About pillars ---------- */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 12px;
}

.pillar {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.pillar:hover {
  border-color: rgba(255, 92, 53, 0.4);
  transform: translateY(-2px);
}

.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.pillar p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

.founders-head {
  margin-top: 80px;
}

/* ---------- How it works ---------- */
.howitworks-head,
.testimonials-head {
  margin-top: 96px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 18px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 92, 53, 0.5), transparent);
  transform: translateY(-50%);
}

.step:last-child::after {
  display: none;
}

.step:hover {
  border-color: rgba(255, 92, 53, 0.4);
  transform: translateY(-2px);
}

.step-num {
  font-family: inherit;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(120deg, #ff8038 0%, #ff5c35 55%, #d94a24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step::after {
    display: none;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.testimonial:hover {
  border-color: rgba(255, 92, 53, 0.35);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 92, 53, 0.04), var(--bg-card));
}

.quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: inherit;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 92, 53, 0.4);
  user-select: none;
}

.testimonial blockquote {
  margin: 0 0 22px;
  padding: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.testimonial blockquote strong {
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(120deg, #ff8038, #ff5c35 60%, #d94a24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff5c35, #d94a24);
  color: #fff;
  font-family: inherit;
  font-size: 19px;
  font-weight: 400;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 92, 53, 0.25);
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.t-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.t-role {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

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

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.member {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-align: center;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.member:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0eee8, #e5e5e5);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-family: inherit;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-size: 32px;
  font-weight: 400;
}

.member h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.role {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.bio {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0 0 18px;
}

.member-link {
  color: var(--text-dim);
  font-size: 13.5px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.member-link:hover {
  color: var(--text);
  border-color: var(--text);
}

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

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(180deg, transparent, rgba(255, 92, 53, 0.05));
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact h2 {
  margin: 14px 0 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    justify-content: flex-start;
  }
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 28px;
  background: var(--bg-elev);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 28ch;
}

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

.footer-cols h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin: 0 0 14px;
  font-weight: 600;
}

.footer-cols a {
  display: block;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer-cols a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Solution landing page (Nail Art / Bulk Try-on / Video Replicate)
   ============================================================ */
.sol-page main {
  padding-top: 0;
}

/* --- Hero --- */
.sol-hero {
  position: relative;
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.sol-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.sol-hero-copy .eyebrow {
  margin-bottom: 18px;
}

.sol-hero-copy h1 {
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
  max-width: none;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .sol-hero-copy h1 {
    white-space: normal;
  }
}

.sol-hero-copy .sol-hero-tagline {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 22px;
  max-width: 28ch;
}

.sol-hero-copy .sol-hero-tagline em {
  font-size: 1em;
  padding-inline: 0.02em;
}

.sol-hero-copy p {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.55;
}

.sol-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sol-hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.sol-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .sol-hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sol-hero {
    padding: 64px 0 56px;
  }
  .sol-hero-copy h1 {
    max-width: none;
  }
}

/* --- How it works (3 steps) --- */
.sol-steps {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.sol-steps .section-head {
  margin-bottom: 48px;
}

.sol-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: solstep;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sol-step {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  counter-increment: solstep;
  display: block;
  list-style: none;
}

.sol-step::marker {
  content: "";
  color: transparent;
}

.sol-step::before {
  content: counter(solstep, decimal-leading-zero);
  display: block;
  font-family: inherit;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(120deg, #ff8038 0%, #ff5c35 55%, #d94a24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.sol-step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 600;
}

.sol-step p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .sol-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Why use (image left/right + bullet copy) --- */
.sol-why {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.sol-why .section-head {
  margin-bottom: 56px;
}

.sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.sol-row:last-child {
  margin-bottom: 0;
}

.sol-row.reverse .sol-row-img {
  order: 2;
}

.sol-row-img {
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.sol-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sol-row:hover .sol-row-img img {
  transform: scale(1.03);
}

.sol-row-copy h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-weight: 700;
}

.sol-row-copy p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0 0 18px;
  line-height: 1.6;
}

.sol-row-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sol-row-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}

.sol-row-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.sol-row-copy strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .sol-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .sol-row.reverse .sol-row-img {
    order: 0;
  }
}

/* --- FAQ --- */
.sol-faq {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.sol-faq .section-head {
  margin-bottom: 36px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 4px 22px;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(255, 92, 53, 0.4);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* --- CTA strip --- */
.sol-cta-strip {
  padding: 80px 0;
}

.sol-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 92, 53, 0.15), transparent 70%), var(--bg-card);
}

.sol-cta-inner h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 700;
}

.sol-cta-inner p {
  color: var(--text-dim);
  margin: 0 0 28px;
  font-size: 16px;
}

.sol-cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   Pricing page
   ============================================================ */

/* Hidden radios drive the CSS-only toggle */
.bill-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-hero {
  position: relative;
  padding: 96px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.pricing-hero .eyebrow {
  margin-bottom: 18px;
}

.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 14px auto 18px;
  font-weight: 700;
  max-width: none;
  white-space: nowrap;
}

.pricing-hero .lede {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: 18px;
}

/* Billing toggle pill */
.bill-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
  user-select: none;
}

.bill-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.22s ease;
  white-space: nowrap;
}

.bill-save {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
}

.bill-toggle-slider {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  border-radius: 999px;
  background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(26, 26, 27, 0.08);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#bill-monthly:checked ~ main .bill-label-monthly {
  color: var(--text);
}
#bill-annual:checked ~ main .bill-label-annual {
  color: var(--text);
}
#bill-annual:checked ~ main .bill-toggle-slider {
  transform: translateX(100%);
}

#bill-monthly:checked ~ main .bill-only-annual {
  display: none;
}
#bill-annual:checked ~ main .bill-only-monthly {
  display: none;
}

#bill-annual:checked ~ main .price-amount[data-annual] {
  font-size: 0;
}
#bill-annual:checked ~ main .price-amount[data-annual]::before {
  content: attr(data-annual);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
}

.pricing-cards-wrap {
  padding: 56px 0 64px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

/* When subscribed, the Free card is hidden — render the remaining three tiers
   as a centered 3-up grid (desktop only) instead of leaving a 4th-column gap.
   Scoped to min-width so the responsive 2-/1-col rules below still win on
   narrower screens. */
@media (min-width: 1141px) {
  .pricing-cards.is-subscribed {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    margin-inline: auto;
  }
}

@media (max-width: 1140px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

.tier {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (min-width: 1141px) {
  .tier .price-amount,
  #bill-annual:checked ~ main .tier .price-amount[data-annual]::before {
    font-size: 42px;
  }
}

.tier:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26, 26, 27, 0.06);
}

.tier-popular {
  border-color: var(--accent);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 92, 53, 0.08), transparent 70%), var(--bg-card);
  box-shadow: 0 18px 40px rgba(255, 92, 53, 0.12);
}

.tier-popular:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(255, 92, 53, 0.18);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255, 92, 53, 0.3);
}

.tier-head h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.tier-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 24px;
  line-height: 1.5;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 4px;
}

.price-amount {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 500;
}

.price-note {
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0 24px;
  min-height: 1.2em;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 13px 18px;
}

.tier-perks {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.tier-perks li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}

.tier-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23ff5c35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.tier-perks li strong {
  font-weight: 600;
}

.tier-perks li.locked::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='4' y='7.5' width='8' height='5.5' rx='1.1' fill='none' stroke='%23ff5c35' stroke-width='1.5'/><path d='M5.5 7.5V5.5a2.5 2.5 0 0 1 5 0V7.5' fill='none' stroke='%23ff5c35' stroke-width='1.5' stroke-linecap='round'/></svg>");
}

@media (max-width: 760px) {
  .pricing-hero {
    padding: 64px 0 32px;
  }
}

/* ============================================================
   Tier credit chip — the big credit number on each tier card
   ============================================================ */
.tier-credits {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 22px;
  padding: 14px 18px;
  background: var(--accent-soft);
  border-radius: 14px;
}

.tier-popular .tier-credits {
  background: rgba(255, 92, 53, 0.14);
}

.tier-credits-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}

.tier-credits-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.tier-equal-note {
  margin: 32px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================================
   Credit math — per-app credit cost cards
   ============================================================ */
.credit-math {
  padding: 72px 0 56px;
  border-top: 1px solid var(--line);
}

.credit-math .section-head {
  margin-bottom: 40px;
}

.credit-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 960px) {
  .credit-apps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .credit-apps {
    grid-template-columns: 1fr;
  }
}

.credit-app {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.credit-app:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.credit-app-cost {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.credit-app-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}

.credit-app-unit {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.credit-app h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.credit-app p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}

/* ============================================================
   Credit examples — "what each plan can produce" table
   ============================================================ */
.credit-examples {
  padding: 56px 0 80px;
}

.credit-examples .section-head {
  margin-bottom: 36px;
}

.credit-examples-table-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
}

.credit-examples-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.credit-examples-table th,
.credit-examples-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.credit-examples-table thead th {
  background: rgba(255, 92, 53, 0.04);
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.credit-examples-table .th-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}

.credit-examples-table .th-unit {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 600;
}

.credit-examples-table tbody td:first-child {
  font-weight: 500;
  color: var(--text);
}

.credit-examples-table tbody td:not(:first-child) {
  color: var(--text-dim);
}

.credit-examples-table tbody tr:last-child td {
  border-bottom: none;
}

.credit-examples-table tbody tr:hover {
  background: rgba(255, 92, 53, 0.03);
}

@media (max-width: 720px) {
  .credit-examples-table {
    font-size: 13.5px;
  }

  .credit-examples-table th,
  .credit-examples-table td {
    padding: 12px 14px;
  }
}
