/* TAP 2 BUY Marketing Website — Airo-inspired editorial style */

:root {
  --web-bg: #F5F5F3;
  --web-bg-alt: #FAFAFA;
  --web-dark: #0A0A0A;
  --web-foreground: #0A0A0A;
  --web-primary: #035D30;
  --web-primary-hover: #047a3f;
  --web-primary-soft: rgba(3, 93, 48, 0.08);
  --web-primary-border: rgba(3, 93, 48, 0.15);
  --web-muted: #6B7280;
  --web-muted-green: #7BC47E;
  --web-card: #F7F8F6;
  --web-white: #FFFFFF;
  --web-border: #E4E6E3;
  --web-radius: 8px;
  --web-radius-lg: 12px;
  --web-radius-xl: 16px;
  --web-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  --web-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.website-page {
  min-height: 100vh;
  background: var(--web-bg);
  color: var(--web-foreground);
  font-family: var(--font-body);
  overflow-x: visible;
  padding-top: var(--website-header-height, 84px);
}

body.website-page .watermark {
  display: none;
}

body.website-page h1,
body.website-page h2,
body.website-page h3,
body.website-page h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

/* Header */
#websiteHeader,
#siteHeaderMount {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  width: 100%;
}

.website-header {
  position: relative;
  top: auto;
  z-index: 300;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--web-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.website-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 32px;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.website-logo .logo-img {
  height: 63px;
}

.website-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.website-nav-link {
  text-decoration: none;
  color: var(--web-foreground);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, background 0.2s;
}

.website-nav-link:hover {
  background: transparent;
  color: var(--web-primary);
  border-bottom-color: var(--web-primary);
}

.website-nav-link.active {
  background: transparent;
  color: var(--web-foreground);
  border-bottom-color: var(--web-foreground);
}

.website-header-ctas {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-website-primary,
.btn-website-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-website-primary {
  background: var(--web-primary);
  color: var(--web-white);
  border-color: var(--web-primary);
}

.btn-website-primary:hover {
  background: var(--web-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(3, 93, 48, 0.25);
}

.btn-website-secondary {
  background: var(--web-white);
  color: var(--web-foreground);
  border-color: var(--web-foreground);
}

.btn-website-secondary:hover {
  background: var(--web-white);
  border-color: var(--web-foreground);
}

.website-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--web-foreground);
}

.website-main {
  position: relative;
  z-index: 1;
}

/* Cinematic hero (homepage) */
.website-hero--cinematic {
  position: relative;
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.website-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.9) 0%, rgba(8, 10, 11, 0.76) 30%, rgba(8, 10, 11, 0.5) 55%, rgba(8, 10, 11, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.34) 0%, rgba(8, 10, 11, 0.68) 100%),
    linear-gradient(135deg, #102219 0%, #0f1713 50%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.website-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 11, 0.5) 0%, transparent 40%);
}

.website-hero-bg--home {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.88) 0%, rgba(8, 10, 11, 0.72) 35%, rgba(8, 10, 11, 0.45) 60%, rgba(8, 10, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.35) 0%, rgba(8, 10, 11, 0.65) 100%),
    url('../assets/hero-home.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.website-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 32px 70px;
}

.website-hero--cinematic .website-hero-content {
  max-width: 680px;
}

.website-page .website-hero--cinematic h1 {
  font-size: clamp(3.1rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 700;
  color: #ffffff !important;
  margin: 18px 0 24px;
}

.website-page .website-hero--cinematic h1 .website-hero-accent {
  color: #05944b !important;
}

.website-hero--cinematic .website-hero-label {
  background: rgba(3, 93, 48, 0.15);
  color: rgba(121, 215, 145, 0.85);
  border: 1px solid rgba(3, 93, 48, 0.25);
  backdrop-filter: blur(4px);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.73rem;
}

.website-hero--cinematic .website-hero-intro {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
}

.website-hero--cinematic .btn-website-secondary {
  color: var(--web-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.website-link-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 10px 4px;
}

.website-link-ghost::after {
  content: "›";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.website-link-ghost:hover {
  color: var(--web-white);
}

.website-link-ghost:hover::after {
  transform: translateX(2px);
}

button.website-link-ghost {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.website-hero--cinematic .btn-website-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--web-white);
}

/* About — Our Story hero */
.website-hero--about-story {
  min-height: min(88vh, 820px);
}

.website-hero-bg--about-story {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.9) 38%, rgba(8, 10, 11, 0.62) 62%, rgba(8, 10, 11, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.35) 0%, rgba(8, 10, 11, 0.7) 100%),
    url('../assets/about-story-hero.png') center right / cover no-repeat;
}

.website-hero-label--dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.website-hero-label--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79d791;
  flex-shrink: 0;
}

.website-hero--about-story .website-hero-content {
  max-width: 640px;
}

.website-hero--about-story .website-hero-intro {
  max-width: 560px;
  margin-bottom: 0;
}

.website-page .website-hero--about-story h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
}

/* Retailers — hero */
.website-hero--retailer {
  min-height: min(88vh, 820px);
}

.website-hero-bg--retailer {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.94) 0%, rgba(8, 10, 11, 0.82) 34%, rgba(8, 10, 11, 0.55) 58%, rgba(8, 10, 11, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.25) 0%, rgba(8, 10, 11, 0.72) 100%),
    url('../assets/retailer-hero.png') center right / cover no-repeat;
}

.website-hero-label--retailer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.website-hero--retailer .website-hero-content {
  max-width: 640px;
}

.website-hero--retailer .website-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(88vh, 820px);
  padding-bottom: 36px;
}

/* Careers — hero */
.website-hero--careers {
  min-height: min(88vh, 820px);
}

.website-hero-bg--careers {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.9) 38%, rgba(8, 10, 11, 0.62) 62%, rgba(8, 10, 11, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.35) 0%, rgba(8, 10, 11, 0.7) 100%),
    url('../assets/careers-hero.png') center right / cover no-repeat;
}

.website-hero-label--careers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.website-hero--careers .website-hero-content {
  max-width: 640px;
}

.website-hero--careers .website-hero-intro {
  max-width: 560px;
}

.website-page .website-hero--careers h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
}

.website-hero--careers .website-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(88vh, 820px);
  padding-bottom: 36px;
}

/* Contact — hero */
.website-hero--contact {
  min-height: min(78vh, 720px);
  align-items: center;
}

.website-hero-bg--contact {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(3, 93, 48, 0.28) 0%, transparent 52%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.45) 0%, rgba(8, 10, 11, 0.82) 100%),
    url('../assets/careers-hero.png') center / cover no-repeat;
}

.website-hero-label--contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.website-hero--contact .website-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(78vh, 720px);
  padding: 96px 32px 80px;
}

.website-hero--contact .website-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.website-hero--contact .website-hero-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.website-page .website-hero--contact h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.02;
}

/* Contact — Waiting List */
.website-waitlist-section {
  background: var(--web-bg);
  padding: 56px 32px 96px;
  border-top: 1px solid var(--web-border);
}

.website-waitlist-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.website-waitlist-role-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.website-waitlist-role-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #6b7280;
}

.website-waitlist-role-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.website-waitlist-role-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--web-border);
  border-radius: 999px;
  background: var(--web-white);
  color: var(--web-foreground);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.website-waitlist-role-tab:hover {
  border-color: rgba(3, 93, 48, 0.35);
  color: var(--web-primary);
}

.website-waitlist-role-tab.is-active {
  background: var(--web-primary);
  border-color: var(--web-primary);
  color: #ffffff;
}

.website-waitlist-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  border: 1px solid var(--web-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--web-white);
  box-shadow: var(--web-shadow);
}

.website-waitlist-sidebar {
  background: #0b1210;
  color: #ffffff;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
}

.website-waitlist-sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(3, 93, 48, 0.18);
  color: #79d791;
  margin-bottom: 18px;
}

.website-waitlist-sidebar h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.website-waitlist-sidebar > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.website-waitlist-steps {
  margin-top: 34px;
}

.website-waitlist-steps h3 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.website-waitlist-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-waitlist-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.website-waitlist-steps li + li {
  margin-top: 14px;
}

.website-waitlist-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(3, 93, 48, 0.22);
  color: #79d791;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.website-waitlist-sidebar-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.website-waitlist-sidebar-footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

.website-waitlist-sidebar-footer p + p {
  margin-top: 10px;
}

.website-waitlist-sidebar-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.website-waitlist-sidebar-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.website-waitlist-form-panel {
  padding: 36px 36px 32px;
}

.website-waitlist-form h2 {
  margin: 0 0 24px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--web-foreground);
}

.website-waitlist-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.website-waitlist-form-heading h2 {
  margin: 0;
}

.website-investor-deposit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.website-investor-deposit-btn:hover {
  background: #1d4ed8;
}

.website-waitlist-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.website-waitlist-form .edit-field {
  margin-bottom: 16px;
}

.website-waitlist-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

.website-waitlist-form input,
.website-waitlist-form textarea,
.website-waitlist-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--web-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.website-waitlist-form input:focus,
.website-waitlist-form textarea:focus,
.website-waitlist-form select:focus {
  outline: none;
  border-color: var(--web-primary);
  box-shadow: 0 0 0 3px rgba(3, 93, 48, 0.12);
}

.website-waitlist-form textarea {
  min-height: 140px;
  resize: vertical;
}

.website-waitlist-submit {
  width: 100%;
  margin-top: 8px;
}

/* Careers — Why Tap 2 Buy */
.website-careers-why-section {
  background: var(--web-white);
  padding: 88px 32px;
  border-top: 1px solid var(--web-border);
}

.website-careers-why-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-careers-why-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-careers-why-section h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0 0 40px;
  max-width: 22ch;
}

.website-careers-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.website-careers-why-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: var(--web-shadow);
}

.website-careers-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(3, 93, 48, 0.1);
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-careers-why-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--web-foreground);
}

.website-careers-why-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Careers — Open Roles */
.website-careers-roles-section {
  background: var(--web-bg);
  padding: 88px 32px 96px;
  border-top: 1px solid var(--web-border);
}

.website-careers-roles-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-careers-roles-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.website-careers-roles-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-careers-roles-section h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0;
}

.website-careers-roles-aside {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.website-careers-roles-general {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4b5563;
}

.website-careers-roles-general a {
  color: var(--web-primary);
  font-weight: 600;
  text-decoration: none;
}

.website-careers-roles-general a:hover {
  text-decoration: underline;
}

.website-careers-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--web-border);
  border-radius: 999px;
  background: var(--web-white);
  color: var(--web-foreground);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--web-shadow);
}

.website-careers-filter-btn:hover {
  border-color: rgba(3, 93, 48, 0.35);
  color: var(--web-primary);
}

.website-careers-filters-panel {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--web-border);
  border-radius: 16px;
  background: var(--web-white);
  box-shadow: var(--web-shadow);
}

.website-careers-filters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.website-careers-filters-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.website-careers-role-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.website-careers-role-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow: var(--web-shadow);
}

.website-careers-role-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.website-careers-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(3, 93, 48, 0.1);
  color: var(--web-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.website-careers-role-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 18px;
  color: #6b7280;
  font-size: 0.84rem;
}

.website-careers-role-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.website-careers-role-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--web-foreground);
}

.website-careers-role-summary {
  margin: 0 0 22px;
  max-width: 920px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4b5563;
}

.website-careers-role-details {
  margin-bottom: 22px;
  padding-top: 4px;
}

.website-careers-role-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.website-careers-role-details-column h4 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.website-careers-role-bullet-list,
.website-careers-role-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-careers-role-bullet-list li,
.website-careers-role-checklist li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #374151;
}

.website-careers-role-bullet-list li + li,
.website-careers-role-checklist li + li {
  margin-top: 10px;
}

.website-careers-role-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--web-primary);
}

.website-careers-role-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.website-careers-role-checklist li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--web-primary);
}

.website-careers-role-empty {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6b7280;
}

.website-careers-role-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.website-careers-role-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--web-foreground);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.website-careers-role-toggle:hover {
  color: var(--web-primary);
}

.website-careers-role-apply {
  flex-shrink: 0;
  white-space: nowrap;
}

.website-retailer-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--web-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.website-retailer-stat {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
}

.website-retailer-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--web-white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.website-retailer-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

/* Retailers — The Opportunity */
.website-retailer-opportunity-section {
  background: var(--web-white);
  padding: 88px 32px;
  border-top: 1px solid var(--web-border);
}

.website-retailer-opportunity-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.website-retailer-opportunity-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-retailer-opportunity-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0 0 28px;
  max-width: 18ch;
}

.website-retailer-opportunity-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
  margin-bottom: 28px;
}

.website-retailer-opportunity-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #2f2f2f;
}

.website-retailer-opportunity-emphasis {
  font-weight: 700;
  color: var(--web-foreground) !important;
}

.website-retailer-opportunity-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
}

.website-retailer-opportunity-feature {
  background: #f3f4f2;
  border-radius: 12px;
  padding: 18px 18px 16px;
}

.website-retailer-opportunity-feature h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--web-primary);
}

.website-retailer-opportunity-feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4b5563;
}

.website-retailer-opportunity-visual {
  position: relative;
}

.website-retailer-opportunity-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-lg);
}

.website-retailer-opportunity-order-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(100%, 240px);
  padding: 16px 18px;
  background: var(--web-white);
  border-radius: var(--web-radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.website-retailer-opportunity-order-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.website-retailer-opportunity-order-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--web-foreground);
  margin-bottom: 8px;
}

.website-retailer-opportunity-order-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--web-primary);
  font-weight: 500;
}

.website-retailer-opportunity-order-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--web-primary);
  flex-shrink: 0;
}

/* Retailers — Benefits */
.website-retailer-benefits-section {
  background: var(--web-bg);
  padding: 88px 32px;
  border-top: 1px solid var(--web-border);
}

.website-retailer-benefits-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-retailer-benefits-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-retailer-benefits-section h2 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0 0 40px;
  max-width: 20ch;
}

.website-retailer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.website-retailer-benefit-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 16px;
  padding: 24px 22px 22px;
  box-shadow: var(--web-shadow);
}

.website-retailer-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(3, 93, 48, 0.1);
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-retailer-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--web-foreground);
}

.website-retailer-benefit-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4b5563;
}

.website-retailer-benefits-section + .website-content-card {
  margin-top: 32px;
}

/* Retailers — Getting Started */
.website-retailer-steps-section {
  background: #060708;
  color: #ffffff;
  padding: 88px 32px 96px;
}

.website-retailer-steps-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-retailer-steps-header {
  text-align: center;
  margin-bottom: 48px;
}

.website-retailer-steps-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ecf8f;
  margin-bottom: 18px;
}

.website-retailer-steps-section h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.website-retailer-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.website-retailer-step-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 22px 28px;
  min-height: 220px;
}

.website-retailer-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--web-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.website-retailer-step-watermark {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.website-retailer-step-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.website-retailer-step-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

.website-retailer-steps-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.website-retailer-steps-section .btn-website-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.website-retailer-steps-section .btn-website-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

/* Retailers — Who We Work With */
.website-retailer-audience-section {
  background: var(--web-white);
  padding: 88px 32px 96px;
  border-top: 1px solid var(--web-border);
}

.website-retailer-audience-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-retailer-audience-header {
  text-align: center;
  margin-bottom: 48px;
}

.website-retailer-audience-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-retailer-audience-section h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0;
}

.website-retailer-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.website-retailer-audience-card {
  background: #f3f4f2;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
}

.website-retailer-audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(3, 93, 48, 0.1);
  color: var(--web-primary);
  margin-bottom: 22px;
}

.website-retailer-audience-card h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--web-foreground);
}

.website-retailer-audience-card p {
  margin: 0 auto;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
}

/* About — The Problem */
.website-problem-section {
  background: var(--web-white);
  padding: 88px 32px;
  border-top: 1px solid var(--web-border);
}

.website-problem-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.website-problem-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-problem-content h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0 0 28px;
  max-width: 18ch;
}

.website-problem-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.website-problem-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #2f2f2f;
}

.website-problem-visual {
  position: relative;
}

.website-problem-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-lg);
}

.website-problem-stat-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(100%, 280px);
  padding: 20px 22px;
  background: var(--web-white);
  border-radius: var(--web-radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.website-problem-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--web-primary);
  margin-bottom: 6px;
}

.website-problem-stat-label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #4b5563;
  margin-bottom: 14px;
}

.website-problem-compare {
  display: grid;
  gap: 10px;
}

.website-problem-bar {
  height: 8px;
  border-radius: 999px;
}

.website-problem-bar--long {
  width: 100%;
  background: #b56a45;
}

.website-problem-bar-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
}

.website-problem-bar--short {
  width: 100%;
  background: var(--web-primary);
}

.website-problem-bar-row span {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #374151;
}

/* About — Where we're going */
.website-about-going-section {
  background: #060708;
  color: #ffffff;
  padding: 88px 32px 96px;
}

.website-about-going-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-about-going-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 40px;
}

.website-about-going-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.website-about-going-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 28px 32px;
}

.website-about-going-icon,
.website-about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(3, 93, 48, 0.18);
  color: #6ecf8f;
  margin-bottom: 18px;
}

.website-about-going-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ecf8f;
  margin-bottom: 14px;
}

.website-about-going-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  max-width: 18ch;
}

.website-about-going-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 52ch;
}

.website-about-values-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 48px 0 24px;
}

.website-about-values-divider::before,
.website-about-values-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.website-about-values-divider span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.website-about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.website-about-value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 18px 20px;
  min-height: 148px;
}

.website-about-value-card h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.website-about-value-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

/* About — What Makes Us Different */
.website-about-different-section {
  background: var(--web-white);
  padding: 88px 32px;
  border-top: 1px solid var(--web-border);
}

.website-about-different-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.website-about-different-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--web-primary);
  margin-bottom: 18px;
}

.website-about-different-section h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--web-foreground);
  margin: 0 0 40px;
  max-width: 16ch;
}

.website-about-different-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.website-about-different-item {
  padding: 24px 20px 22px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background: var(--web-white);
}

.website-about-different-accent {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--web-primary);
  margin-bottom: 16px;
}

.website-about-different-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
}

.website-about-different-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #2f2f2f;
  max-width: 360px;
}

.website-hero-stats {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  margin-top: 64px;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--web-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.website-stat {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.05);
}

.website-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--web-white);
  line-height: 1;
  margin-bottom: 6px;
}

.website-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Standard hero (inner pages) */
.website-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 32px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.website-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 12px 0 20px;
  color: var(--web-foreground);
  font-weight: 700;
}

.website-hero-label {
  display: inline-block;
  background: var(--web-primary-soft);
  color: var(--web-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--web-radius);
  border: 1px solid var(--web-primary-border);
}

.website-hero-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--web-muted);
  margin-bottom: 28px;
}

.website-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.website-hero-visual {
  background: var(--web-dark);
  border-radius: var(--web-radius-xl);
  padding: 48px 32px;
  color: var(--web-white);
  text-align: center;
  box-shadow: var(--web-shadow-lg);
  position: relative;
  overflow: hidden;
}

.website-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(3, 93, 48, 0.4) 0%, transparent 60%);
}

.website-hero-visual h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
}

.website-hero-visual p {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

.website-hero-stat {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  position: relative;
}

.website-hero-stat div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.website-hero-stat div span {
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.website-section {
  padding: 80px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.website-section--alt {
  background: var(--web-bg-alt);
  max-width: none;
  padding: 80px 0;
}

.website-section--alt > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.website-section-header {
  margin-bottom: 48px;
}

.website-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--web-foreground);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.website-section-intro {
  color: var(--web-muted);
  line-height: 1.7;
  max-width: 600px;
  font-size: 1.0625rem;
}

.website-process-section {
  background: #f3f3f3;
}

.website-process-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0f6b43;
  margin-bottom: 10px;
}

.website-process-section .website-section-title {
  max-width: 520px;
  margin-bottom: 0;
}

.website-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 24px;
  margin-top: 42px;
}

.website-process-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  border-top: 1px dashed #d4d4d4;
}

.website-process-step {
  position: relative;
}

.website-process-marker {
  position: relative;
  padding-top: 22px;
  margin-bottom: 24px;
}

.website-process-marker::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f6b43;
}

.website-process-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #0f6b43;
}

.website-process-step h3 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #161616;
  letter-spacing: -0.01em;
}

.website-process-step p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #3f3f3f;
  max-width: 230px;
}

.website-who-section {
  background: #e8e8e8;
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 80px 32px;
  box-sizing: border-box;
}

.website-who-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.website-who-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}

.website-who-card {
  position: relative;
  min-height: 270px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}

.website-who-card-retailers {
  grid-column: 1 / -1;
  min-height: 210px;
}

.website-who-card-customers {
  background:
    linear-gradient(115deg, rgba(13, 20, 16, 0.82) 8%, rgba(13, 20, 16, 0.45) 55%, rgba(13, 20, 16, 0.15) 100%),
    url('../assets/hero-customers.png') center / cover no-repeat;
}

.website-who-card-partners {
  background:
    linear-gradient(115deg, rgba(13, 20, 16, 0.82) 8%, rgba(13, 20, 16, 0.45) 55%, rgba(13, 20, 16, 0.15) 100%),
    url('../assets/hero-partners.png') center / cover no-repeat;
}

.website-who-card-retailers {
  background:
    linear-gradient(110deg, rgba(13, 20, 16, 0.82) 8%, rgba(13, 20, 16, 0.45) 52%, rgba(13, 20, 16, 0.15) 100%),
    url('../assets/hero-retailers.png') center / cover no-repeat;
}

.website-who-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 12, 0.78) 0%, rgba(9, 11, 12, 0.22) 45%, rgba(9, 11, 12, 0) 78%);
}

.website-who-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 92%;
}

.website-who-pill {
  display: inline-block;
  background: rgba(6, 126, 72, 0.88);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.website-who-card h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

.website-who-card ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.website-who-list-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 2px;
  max-width: 500px;
}

.website-who-card li {
  position: relative;
  padding-left: 12px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.website-who-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.95);
}

.website-who-card .website-link-ghost {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 2px 0;
}

.website-who-card .website-link-ghost:hover {
  color: #c7f2dd;
}

.website-who-btn {
  margin-top: 4px;
  padding: 8px 16px;
  font-size: 0.82rem;
}

.website-why-grid-section {
  background: #ffffff;
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 80px 32px;
  box-sizing: border-box;
}

.website-why-grid-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.website-why-grid-header {
  text-align: center;
}

.website-why-grid-header .website-section-title {
  max-width: none;
}

.website-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.website-why-item {
  padding: 22px 16px 18px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background: #ffffff;
}

.website-why-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #d2dfd8;
  margin-bottom: 10px;
}

.website-why-item h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #171717;
}

.website-why-item p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #2f2f2f;
  max-width: 280px;
}

.website-purpose-section {
  background: #e8e8e8;
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 80px 32px;
  box-sizing: border-box;
}

.website-purpose-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.website-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.website-purpose-card {
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid #e5e5e5;
}

.website-purpose-card-vision {
  background: #f8f8f8;
  color: #101010;
}

.website-purpose-card-mission {
  background: #060708;
  color: #ffffff;
  border-color: #111315;
}

.website-purpose-accent {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #0e774b;
  margin-bottom: 14px;
}

.website-purpose-kicker {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #0e774b;
}

.website-purpose-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.2;
}

.website-purpose-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 560px;
}

.website-purpose-card-vision p {
  color: #2a2a2a;
}

.website-purpose-card-mission p {
  color: rgba(255, 255, 255, 0.7);
}

.website-purpose-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.website-purpose-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid #d0d3d0;
  background: #f5f5f5;
  color: #1f1f1f;
  font-size: 0.74rem;
  font-weight: 600;
}

/* Order Today — green CTA band */
.website-order-today-section {
  background: #035d30;
  padding: 72px 32px;
  margin: 0;
}

.website-order-today-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.website-order-today-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
}

.website-order-today-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
  max-width: 480px;
}

.website-order-today-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-order-today-primary,
.btn-order-today-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}

.btn-order-today-primary {
  background: #ffffff;
  color: #035d30;
  border-color: #ffffff;
}

.btn-order-today-primary:hover {
  background: #f0f0f0;
}

.btn-order-today-primary::after {
  content: "→";
  font-weight: 500;
}

.btn-order-today-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-order-today-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.website-order-today-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.website-order-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.website-order-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.website-order-stat-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.website-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--web-border);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-xl);
  overflow: hidden;
}

.website-feature-card {
  background: var(--web-white);
  padding: 36px 32px;
  transition: background 0.25s, transform 0.25s;
  position: relative;
}

.website-feature-card:hover {
  background: var(--web-card);
  transform: scale(1.01);
  z-index: 1;
  box-shadow: var(--web-shadow-lg);
}

.website-feature-card h3 {
  color: var(--web-foreground);
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.website-feature-card p {
  color: var(--web-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.9375rem;
}

.website-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--web-primary-soft);
  border: 1px solid var(--web-primary-border);
  border-radius: var(--web-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--web-primary);
  font-size: 1.25rem;
}

.website-feature-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--web-primary);
  opacity: 0.08;
  line-height: 1;
}

/* Page content */
.website-page-hero {
  padding: 80px 32px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.website-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--web-foreground);
  margin: 12px 0 16px;
  font-weight: 700;
  line-height: 1.05;
}

.website-content-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-xl);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--web-shadow);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.website-main > .website-content-card,
.website-main > .website-statements-grid,
.website-main > .website-contact-grid {
  margin-left: 32px;
  margin-right: 32px;
}

.website-content-card h2 {
  color: var(--web-foreground);
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.website-content-card p,
.website-content-card li {
  line-height: 1.7;
  color: #444;
}

.website-content-card ul {
  padding-left: 20px;
  margin: 12px 0;
}

/* CTA band */
.website-cta-band {
  background: #ffffff;
  margin: 0;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.website-cta-band::before {
  display: none;
}

.website-cta-band-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.website-cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.website-cta-band p {
  color: #1a1a1a;
  line-height: 1.7;
  max-width: 480px;
  font-size: 1.0625rem;
}

.website-cta-band .website-cta-row {
  margin-top: 0;
  flex-shrink: 0;
}

.website-cta-band .btn-website-secondary {
  color: var(--web-foreground);
  border-color: var(--web-border);
  background: transparent;
}

.website-cta-band .btn-website-secondary:hover {
  background: var(--web-white);
  border-color: var(--web-foreground);
  color: var(--web-foreground);
}

.website-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.website-statements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 0 32px 48px;
  max-width: calc(1400px - 64px);
}

.website-statement-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-xl);
  padding: 28px;
  box-shadow: var(--web-shadow);
}

.website-statement-card h3 {
  color: var(--web-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
}

.website-statement-card p {
  color: var(--web-muted);
  line-height: 1.65;
}

/* Contact form */
.website-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
  max-width: 1400px;
  margin: 0 32px 48px;
}

.website-contact-form .edit-field {
  margin-bottom: 16px;
}

.website-contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

.website-contact-form input,
.website-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--web-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.website-contact-form input:focus,
.website-contact-form textarea:focus {
  outline: none;
  border-color: var(--web-primary);
  box-shadow: 0 0 0 3px rgba(3, 93, 48, 0.12);
}

.website-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.website-contact-success {
  text-align: center;
  padding: 40px 24px;
}

.website-contact-success h3 {
  color: var(--web-primary);
  margin-bottom: 12px;
}

.website-contact-success-note {
  color: var(--web-muted);
  margin: 16px 0 24px;
}

.website-contact-error {
  color: #c0392b;
  margin-top: 12px;
}

/* Media placeholder */
.website-media-placeholder {
  text-align: center;
  padding: 80px 32px;
  background: var(--web-white);
  border: 1px dashed var(--web-border);
  border-radius: var(--web-radius-xl);
  max-width: 1400px;
  margin: 0 32px 48px;
}

.website-media-placeholder p {
  color: var(--web-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.website-footer {
  position: relative;
  z-index: 1;
  background: var(--web-dark);
  color: var(--web-white);
  padding: 64px 32px 32px;
  margin-top: 0;
}

.website-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.website-footer-logo {
  height: 61px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.website-footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-size: 0.9rem;
}

.website-footer-division {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--web-muted-green);
}

.website-footer-email-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.website-footer-links h4,
.website-footer-contact h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.website-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.website-footer-links a,
.website-footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.website-footer-links a:hover,
.website-footer-contact a:hover {
  color: var(--web-white);
}

.website-footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.website-footer-copy {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Chat FAB */
.website-chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--web-primary);
  color: var(--web-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(3, 93, 48, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.website-chat-fab:hover {
  background: var(--web-primary-hover);
  transform: scale(1.05);
}

.website-chat-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-type-badge-website {
  background: rgba(3, 93, 48, 0.1);
  color: var(--web-primary);
}

.agent-form-message {
  white-space: pre-wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .website-hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .website-hero--cinematic {
    min-height: 75vh;
  }

  .website-hero-inner {
    padding: 100px 24px 48px;
  }

  .website-hero--careers .website-hero-inner {
    min-height: 75vh;
    padding-bottom: 32px;
  }

  .website-hero--contact .website-hero-inner {
    min-height: 70vh;
    padding: 88px 24px 64px;
  }

  .website-page .website-hero--contact h1 {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .website-waitlist-section {
    padding: 48px 24px 72px;
  }

  .website-waitlist-role-tabs {
    justify-content: flex-start;
  }

  .website-waitlist-card {
    grid-template-columns: 1fr;
  }

  .website-waitlist-form-grid {
    grid-template-columns: 1fr;
  }

  .website-waitlist-form-panel {
    padding: 28px 24px 24px;
  }

  .website-waitlist-form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-contact-grid {
    grid-template-columns: 1fr;
  }

  .website-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .website-header-ctas {
    display: none;
  }

  .website-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--web-white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--web-border);
    box-shadow: var(--web-shadow-lg);
  }

  .website-nav.is-open {
    display: flex;
  }

  .website-header-inner {
    flex-wrap: wrap;
    position: relative;
    padding: 12px 20px;
  }

  .website-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .website-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .website-section {
    padding: 56px 24px;
  }

  .website-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .website-who-grid {
    grid-template-columns: 1fr;
  }

  .website-who-card {
    min-height: 250px;
  }

  .website-who-card-retailers {
    min-height: 230px;
  }

  .website-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-purpose-grid {
    grid-template-columns: 1fr;
  }

  .website-order-today-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .website-order-today-section {
    padding: 56px 24px;
  }

  .website-problem-section {
    padding: 64px 24px;
  }

  .website-problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .website-problem-content h2 {
    max-width: none;
  }

  .website-about-going-section {
    padding: 64px 24px 72px;
  }

  .website-about-going-grid {
    grid-template-columns: 1fr;
  }

  .website-about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-about-different-section {
    padding: 64px 24px;
  }

  .website-about-different-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-retailer-hero-stats {
    max-width: none;
  }

  .website-retailer-opportunity-section {
    padding: 64px 24px;
  }

  .website-retailer-opportunity-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .website-retailer-opportunity-content h2 {
    max-width: none;
  }

  .website-careers-why-section {
    padding: 64px 24px;
  }

  .website-careers-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-careers-why-section h2 {
    max-width: none;
  }

  .website-careers-roles-section {
    padding: 64px 24px 72px;
  }

  .website-careers-roles-header {
    flex-direction: column;
    gap: 20px;
  }

  .website-careers-roles-aside {
    max-width: none;
    align-items: flex-start;
    text-align: left;
  }

  .website-careers-filters-grid {
    grid-template-columns: 1fr;
  }

  .website-careers-role-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .website-careers-role-meta {
    justify-content: flex-start;
  }

  .website-careers-role-details-grid {
    grid-template-columns: 1fr;
  }

  .website-careers-role-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .website-retailer-benefits-section {
    padding: 64px 24px;
  }

  .website-retailer-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-retailer-benefits-section h2 {
    max-width: none;
  }

  .website-retailer-steps-section {
    padding: 64px 24px 72px;
  }

  .website-retailer-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-retailer-audience-section {
    padding: 64px 24px 72px;
  }

  .website-retailer-audience-grid {
    grid-template-columns: 1fr;
  }

  .website-main > .website-content-card,
  .website-main > .website-statements-grid,
  .website-main > .website-contact-grid {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 600px) {
  .website-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .website-page .website-hero--careers h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .website-hero--careers .website-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .website-content-card {
    padding: 24px 20px;
  }

  .website-footer-inner {
    grid-template-columns: 1fr;
  }

  .website-statements-grid {
    margin-left: 16px;
    margin-right: 16px;
  }

  .website-process-grid {
    grid-template-columns: 1fr;
  }

  .website-process-grid::before {
    display: none;
  }

  .website-who-content {
    max-width: 100%;
  }

  .website-who-list-two {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .website-why-grid {
    grid-template-columns: 1fr;
  }

  .website-purpose-pill-row {
    justify-content: flex-start;
  }

  .website-order-today-stats {
    grid-template-columns: 1fr;
  }

  .website-problem-stat-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .website-about-values-grid {
    grid-template-columns: 1fr;
  }

  .website-about-different-grid {
    grid-template-columns: 1fr;
  }

  .website-retailer-hero-stats {
    grid-template-columns: 1fr;
  }

  .website-retailer-opportunity-features {
    grid-template-columns: 1fr;
  }

  .website-retailer-opportunity-order-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .website-careers-why-grid {
    grid-template-columns: 1fr;
  }

  .website-retailer-benefits-grid {
    grid-template-columns: 1fr;
  }

  .website-retailer-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Direct deposit modal */
body.direct-deposit-active {
  overflow: hidden;
}

.direct-deposit-backdrop[hidden],
.direct-deposit-modal[hidden] {
  display: none !important;
}

.direct-deposit-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1200;
}

.direct-deposit-modal {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.direct-deposit-panel {
  width: min(520px, 100%);
  background: var(--web-white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.direct-deposit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--web-border);
}

.direct-deposit-header h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--web-foreground);
}

.direct-deposit-header p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #6b7280;
}

.direct-deposit-close {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0 4px;
}

.direct-deposit-close:hover {
  color: var(--web-foreground);
}

.direct-deposit-body {
  padding: 20px 24px 24px;
}

.direct-deposit-details {
  margin: 0;
  display: grid;
  gap: 14px;
}

.direct-deposit-details div {
  display: grid;
  gap: 4px;
}

.direct-deposit-details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.direct-deposit-details dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--web-foreground);
}

.direct-deposit-note {
  margin: 18px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #6b7280;
}

/* Application tracker */
body.application-tracker-active {
  overflow: hidden;
}

.application-tracker-backdrop[hidden],
.application-tracker-modal[hidden] {
  display: none !important;
}

.application-tracker-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1200;
}

.application-tracker-modal {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.application-tracker-panel {
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--web-white);
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-lg);
}

.application-tracker-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.application-tracker-header h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.application-tracker-header p {
  margin: 0;
  color: var(--web-muted);
  font-size: 0.95rem;
}

.application-tracker-close {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--web-muted);
  padding: 0 4px;
}

.application-tracker-body {
  padding: 20px 24px 24px;
}

.application-tracker-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.application-tracker-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius);
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: inherit;
}

.application-tracker-form button {
  width: 100%;
}

.application-tracker-error {
  color: #dc2626;
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.application-tracker-error[hidden] {
  display: none !important;
}

.application-tracker-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.application-tracker-ref-box {
  background: var(--web-primary-soft);
  border: 1px solid var(--web-primary-border);
  border-radius: var(--web-radius-lg);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.application-tracker-ref-box span {
  display: block;
  font-size: 0.85rem;
  color: var(--web-muted);
  margin-bottom: 4px;
}

.application-tracker-ref-box strong {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.application-tracker-summary {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.application-tracker-summary > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.application-tracker-summary dt {
  font-weight: 600;
  color: var(--web-muted);
}

.application-tracker-summary dd {
  margin: 0;
}

.application-tracker-subtitle {
  font-size: 1rem;
  margin: 0 0 12px;
}

.application-tracker-timeline {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.application-tracker-step {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding-bottom: 18px;
  position: relative;
}

.application-tracker-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: var(--web-border);
}

.application-tracker-step-complete:not(:last-child)::before {
  background: var(--web-primary);
}

.application-tracker-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--web-border);
  background: var(--web-white);
  margin-top: 2px;
}

.application-tracker-step-complete .application-tracker-step-dot {
  border-color: var(--web-primary);
  background: var(--web-primary);
}

.application-tracker-step-current .application-tracker-step-dot {
  border-color: var(--web-primary);
  box-shadow: 0 0 0 4px rgba(3, 93, 48, 0.15);
}

.application-tracker-step p {
  margin: 4px 0 0;
  color: var(--web-muted);
  font-size: 0.9rem;
}

.application-tracker-updates {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.application-tracker-update {
  padding: 12px 0;
  border-bottom: 1px solid var(--web-border);
}

.application-tracker-update span {
  display: block;
  font-size: 0.85rem;
  color: var(--web-muted);
  margin-top: 2px;
}

.application-tracker-update p {
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.application-tracker-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--web-radius);
  font-size: 0.85rem;
  font-weight: 600;
}

.application-tracker-status-submitted { background: #e0e7ff; color: #4338ca; }
.application-tracker-status-reviewing { background: #fef3c7; color: #b45309; }
.application-tracker-status-shortlisted { background: #dbeafe; color: #1d4ed8; }
.application-tracker-status-rejected { background: #fee2e2; color: #b91c1c; }
.application-tracker-status-hired { background: #dcfce7; color: #15803d; }

.application-tracker-actions {
  margin-top: 8px;
}

.application-reference-success {
  background: var(--web-primary-soft);
  border: 1px solid var(--web-primary-border);
  border-radius: var(--web-radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: center;
}

.application-reference-label {
  display: block;
  font-size: 0.9rem;
  color: var(--web-muted);
  margin-bottom: 8px;
}

.application-reference-code {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--web-primary);
  margin-bottom: 8px;
}

.careers-apply-success-actions {
  justify-content: center;
}

.careers-hero-actions {
  margin-top: 20px;
}

.hr-reference-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  background: var(--web-primary-soft);
  padding: 2px 6px;
  border-radius: 4px;
}
