/* PointsCard for Business — clay / soft-3D marketing concept */

:root {
  --orange: #f15a24;
  --orange-dark: #d94816;
  --orange-deep: #c43d0f;
  --ink: #121212;
  --muted: #5c5c5c;
  --line: #e8e4df;
  --sand: #f8e7d8;
  --sand-deep: #f0dcc8;
  --sand-footer: #f6e5d4;
  --card: #ffffff;
  --font-display: Outfit, system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
}

.store-badge img {
  display: block;
  height: 40px;
  width: auto;
}

.store-badge:hover {
  background: transparent;
  opacity: 0.9;
}

.text-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--orange-deep);
}

/* —— Icon sprite (3×2 grid) ——
   Top: join | wallet | scan
   Bottom: points | gift | packages */
.sprite {
  width: 112px;
  height: 112px;
  margin: 0;
  background-image: url("../assets/icon-sprite.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  flex-shrink: 0;
}

.sprite--join { background-position: 0% 0%; }
.sprite--wallet { background-position: 50% 0%; }
.sprite--scan { background-position: 100% 0%; }
.sprite--points { background-position: 0% 100%; }

/* Bottom-middle/right cells: zoom slightly & pin bottom to crop top-row bleed */
.sprite--gift,
.sprite--packages {
  background-size: 310% 220%;
}

.sprite--gift { background-position: 50% 100%; }
.sprite--packages { background-position: 100% 100%; }

.product-card .sprite {
  width: 120px;
  height: 120px;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark__orange {
  color: var(--orange);
}

.wordmark__ink {
  color: var(--ink);
}

.wordmark__mascot {
  display: block;
  height: 1.15em;
  width: auto;
  margin: 0 0.02em;
  object-fit: contain;
  /* Sit slightly low so 3D base aligns with letter baseline */
  transform: translateY(0.08em);
  flex-shrink: 0;
}

.logo .wordmark {
  font-size: 1.15rem;
}

.logo .wordmark__mascot {
  height: 1.35em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  padding-left: 0.05rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 16px 40px rgba(18, 18, 18, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: var(--sand);
  }
}

/* —— Hero —— */
.hero {
  /* Full-bleed sand from top of header art; illustration lives inside .inner */
  background-color: var(--sand);
  padding: 0;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  min-height: 540px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: 1.5rem 0 3rem;
  text-align: left;
}

.hero-visual {
  /* Full artwork, uncropped, anchored to content bottom-right */
  position: absolute;
  inset: 0;
  background-image: url("../assets/header-bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  /* Soften hard left edge of the asset into sand */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 38%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 38%,
    #000 100%
  );
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--sand) 0%,
    rgba(248, 231, 216, 0.85) 12%,
    rgba(248, 231, 216, 0.35) 28%,
    transparent 46%
  );
  pointer-events: none;
}

.wordmark--footer {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.wordmark--footer .wordmark__mascot {
  height: 1.3em;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 16ch;
}

.hero-lede {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 28rem;
  margin: 0 0 1.75rem;
}

.hero-lede span {
  display: block;
}

@media (max-width: 900px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
    padding: 0.5rem 0 1rem;
  }

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

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 300px;
    aspect-ratio: 16 / 10;
    background-position: center bottom;
    background-size: contain;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%,
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%,
      #000 100%
    );
  }

  .hero-visual::after {
    background: linear-gradient(
      to bottom,
      var(--sand) 0%,
      transparent 28%
    );
  }
}

/* —— Sections —— */
.section {
  padding: 4.25rem 0;
}

.section--sand {
  background: var(--sand);
}

/* Tighten gap between How it works → Products (both sand panels) */
#how.section {
  padding-bottom: 1.25rem;
}

#products.section {
  padding-top: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 2.25rem;
  color: var(--ink);
}

.section-title--center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.section-title .rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--line);
  flex-shrink: 0;
}

.section-title .rule--orange {
  background: var(--orange);
}

@media (max-width: 560px) {
  .section-title .rule {
    display: none;
  }
}

/* —— How it works —— */
.step-media {
  position: relative;
  flex-shrink: 0;
}

.step-num {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin: 0;
  box-shadow: 0 2px 6px rgba(241, 90, 36, 0.35);
}

/* —— Shared content panel (How it works + Products) —— */
.content-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: 24px;
  padding: 2.25rem 1.75rem 2rem;
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.04);
}

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

.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.product-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  flex: 1;
  margin: 0;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* —— Features —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
}

.feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(241, 90, 36, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

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

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  position: relative;
}

.plan--popular {
  border: 2px solid var(--orange);
  background: #fffaf7;
  box-shadow: 0 14px 36px rgba(241, 90, 36, 0.14);
}

.plan-banner {
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
}

.plan-body {
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.plan--popular .plan-name {
  color: var(--orange);
}

.plan-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex: 1;
  text-align: left;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.plan li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.plan .btn {
  width: 100%;
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

.plan-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* —— CTA band —— */
.cta-band {
  background-color: var(--sand-footer);
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.cta-band__grid {
  position: relative;
  min-height: 300px;
  display: block;
}

.cta-band__copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  padding: 0.5rem 0 2.75rem;
}

.cta-band__visual {
  /* Full artwork, uncropped, anchored bottom-right of content width */
  position: absolute;
  inset: 0;
  background-image: url("../assets/footer-bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  /* Soften hard top (+ left) edge into sand */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 14%,
    #000 32%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 14%,
    #000 32%,
    #000 100%
  );
}

.cta-band__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--sand-footer) 0%,
      rgba(246, 229, 212, 0.8) 10%,
      rgba(246, 229, 212, 0.3) 24%,
      transparent 40%
    ),
    linear-gradient(
      to right,
      var(--sand-footer) 0%,
      rgba(246, 229, 212, 0.65) 14%,
      transparent 42%
    );
  pointer-events: none;
}

.cta-band__copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

@media (max-width: 800px) {
  .cta-band__grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .cta-band__copy {
    max-width: none;
    padding-bottom: 1rem;
  }

  .cta-band__copy h2 {
    max-width: none;
  }

  .cta-band__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    background-position: center bottom;
    background-size: contain;
  }
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.5rem 0 1rem;
  max-width: 28ch;
}

.social {
  display: flex;
  gap: 0.65rem;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.social a svg {
  display: block;
}

.social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(241, 90, 36, 0.06);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a:hover {
  color: var(--ink);
}

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

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

/* —— Products detail page —— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.page-lede {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.product-jump a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 0.1rem;
}

.product-jump a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.product-detail {
  scroll-margin-top: 5rem;
}

.product-detail__panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.product-detail__intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.sprite--lg {
  width: 140px;
  height: 140px;
}

.product-detail__intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
}

.product-detail__lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  width: 100%;
}

.product-detail__grid h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1.35rem;
  position: relative;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--orange);
  font-weight: 800;
}

.benefit-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}

.benefit-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.how-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.how-list__n {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.how-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.15rem;
}

.how-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .product-detail__intro {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
  }
}

.nav-links a[aria-current="page"] {
  color: var(--orange);
}

/* —— Resources —— */
.breadcrumb {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb a {
  color: var(--orange);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.resource-main {
  padding: 1.5rem 0 3rem;
}

.article-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
}

.article-panel h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.article-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.85rem;
}

.article-panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.65rem;
}

.article-panel p,
.article-panel li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.article-panel p {
  margin: 0 0 1rem;
}

.article-panel ul,
.article-panel ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.article-panel ul {
  list-style: disc;
}

.article-panel ol {
  list-style: decimal;
}

.article-panel a {
  color: var(--orange);
  font-weight: 600;
}

.article-panel a:hover {
  text-decoration: underline;
}

.intro-callout {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.25rem 0 1.75rem;
}

.intro-callout p,
.intro-callout li,
.intro-callout strong {
  color: #fff;
}

.faq-item {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.faq-answer {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

a.resource-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.resource-card__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.resource-card h3 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.05rem;
  margin: 0;
  color: var(--ink);
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.resource-section {
  margin-bottom: 2.75rem;
}

.resource-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.coming-soon {
  opacity: 0.72;
}

.page-tool .tool-panel input,
.page-tool .tool-panel select,
.page-tool .tool-panel textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  width: 100%;
  max-width: 100%;
}

.page-tool .tool-panel button,
.page-tool .tool-panel .btn {
  cursor: pointer;
}

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

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

.legal-updated {
  color: var(--muted);
  margin: 0 0 1.5rem !important;
  font-size: 0.95rem !important;
}

.legal-panel h2 {
  margin-top: 2rem;
}

.inline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: middle;
  margin-left: 0.15rem;
}

.inline-brand-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.inline-brand-stars {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #fbbc05;
  line-height: 1;
}

.article-panel svg:not(.inline-brand-icon) {
  max-width: 1.1em;
  max-height: 1.1em;
  vertical-align: middle;
}
