:root {
  --bg: #fbfaf7;
  --bg-elevated: #ffffff;
  --bg-soft: #f4f1eb;
  --border: #e6e1d8;
  --text: #111827;
  --muted: #5f6b7a;
  --accent: #007f73;
  --accent-dim: rgba(0, 127, 115, 0.1);
  --accent-hover: #005f56;
  /* Footer legal strip: brand teal shading (same family as .brand span) */
  --footer-bar-bg: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  --footer-bar-text: rgba(255, 255, 255, 0.94);
  --footer-bar-muted: rgba(255, 255, 255, 0.78);
  --footer-bar-link-hover: #e8fffb;
  --radius: 14px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1080px;

  /* ListWyse public share page layout echo tokens (used by .section-share-skin) */
  --share-bg-deep: #020617;
  --share-bg-mid: #0f172a;
  --share-text: #f8fafc;
  --share-muted: #94a3b8;
  --share-border: rgba(255, 255, 255, 0.1);
  --share-border-subtle: rgba(255, 255, 255, 0.06);
  --share-glow-blue: rgba(37, 99, 235, 0.35);
  --share-glow-sky: rgba(14, 165, 233, 0.24);
  --share-grid-line: rgba(255, 255, 255, 0.035);
  --share-surface: rgba(15, 23, 42, 0.72);
  --share-surface-solid: #0f172a;
  --share-radius-lg: 18px;
  --share-shadow-card: 0 4px 28px rgba(2, 6, 23, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --share-accent-sky: #38bdf8;
  --share-focus-ring: #7dd3fc;
  --carousel-slide-width: min(76%, 360px);
  --carousel-slide-width-mobile: min(88%, 340px);
  --carousel-frame-aspect: 9 / 16;
  --carousel-frame-bar-size: 11.458333%;
  --carousel-frame-foreground-height: 77.083333%;
  --carousel-frame-bar-color: #e9e5dc;
  --carousel-frame-stage-color: #f7f5ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 50% -20%, rgba(0, 127, 115, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-stack {
  padding: 16px 0 14px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 20px;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.btn-ghost {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  flex: 1;
}

.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-dim), transparent 68%),
    var(--bg);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions + .grid-3 {
  margin-top: 32px;
}

.hero-actions + .sample-media-cta {
  margin-top: 32px;
}

.sample-media-cta + .grid-3 {
  margin-top: 32px;
}

.hero-anchor-sep {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 36px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading-row .section-intro {
  margin: 0;
}

.hero-simple h1 {
  max-width: 15ch;
}

.notice-card {
  max-width: 56ch;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.94rem;
}

.notice-card strong {
  color: var(--text);
}

.role-list {
  display: grid;
  gap: 14px;
}

.role-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.04);
}

.role-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.role-card p {
  margin: 0;
  color: var(--muted);
}

.role-card .role-card-apply,
.role-details .role-card-apply {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
}

.role-card .role-card-apply strong,
.role-details .role-card-apply strong {
  color: var(--text);
}

.role-card .role-card-apply a,
.role-details .role-card-apply a {
  font-weight: 600;
}

.role-card > span {
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.role-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-toc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.role-toc a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.careers-openings__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.careers-openings__departments {
  display: grid;
  gap: 48px;
  min-width: 0;
}

.careers-role-index {
  position: sticky;
  top: 88px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.careers-role-index__header {
  grid-column: 1 / -1;
  padding-bottom: 2px;
}

.careers-role-index__header h3,
.careers-role-index__group h3 {
  margin: 0;
}

.careers-role-index__header .role-kicker {
  margin-bottom: 0 !important;
}

.careers-role-index__header h3 {
  font-size: 1.04rem;
}

.careers-role-index__group {
  min-width: 0;
}

.careers-role-index__group h3 {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.careers-role-index__links {
  display: grid;
  gap: 7px;
}

.careers-role-index__link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.careers-role-index__link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.careers-role-index__link:focus-visible,
.role-details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.role-department {
  scroll-margin-top: 88px;
}

.role-department .role-list {
  margin-top: 18px;
  gap: 20px;
}

.role-body {
  max-width: 82ch;
}

.role-body h4 {
  margin: 20px 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.role-body p + p {
  margin-top: 10px;
}

.role-body ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.role-body li + li {
  margin-top: 5px;
}

.role-context {
  color: var(--text) !important;
  font-weight: 600;
}

.role-kicker {
  margin: 0 0 5px !important;
  color: var(--accent) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-details {
  scroll-margin-top: 104px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.role-details[open] {
  border-color: rgba(0, 127, 115, 0.32);
}

.role-details summary {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  list-style: none;
}

.role-details summary::-webkit-details-marker {
  display: none;
}

.role-details summary::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.role-details[open] summary::after {
  transform: rotate(225deg);
}

.role-details__summary-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.role-details__title {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.role-details__department {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.role-details__teaser {
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.role-details__body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border);
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.anchor-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.role-group {
  scroll-margin-top: 92px;
  margin-top: 44px;
}

.role-group-heading {
  margin-bottom: 16px;
}

.role-group-heading h2 {
  margin-bottom: 0;
}

.role-list--detailed {
  gap: 16px;
}

.role-card--detail {
  display: block;
  padding: 0;
  overflow: hidden;
}

.role-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  position: relative;
}

.role-detail summary::-webkit-details-marker {
  display: none;
}

.role-detail summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.role-detail[open] summary::after {
  transform: rotate(225deg);
}

.role-detail summary h3 {
  margin-right: 32px;
}

.role-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.role-detail-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}

.role-detail-body h4 {
  margin: 20px 0 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-detail-body p,
.role-detail-body li {
  color: var(--muted);
  font-size: 0.94rem;
}

.role-detail-body p {
  margin: 0;
}

.role-detail-body ul {
  margin: 0;
  padding-left: 20px;
}

.role-detail-body li + li {
  margin-top: 6px;
}

.narrow-copy {
  max-width: 760px;
}

.legal-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-panel {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 127, 115, 0.22);
  background: linear-gradient(135deg, rgba(0, 127, 115, 0.08), var(--bg-elevated));
}

.cta-panel h2 {
  margin-bottom: 8px;
}

.cta-panel p {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 50ch;
}

.cta-panel.is-spaced {
  margin-top: 40px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 24px;
  margin-top: auto;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  max-width: 28ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 36px;
  padding: 18px max(20px, calc((100vw - min(var(--max), calc(100vw - 40px))) / 2));
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--footer-bar-bg);
  color: var(--footer-bar-text);
  font-size: 0.88rem;
}

.footer-bottom > span:last-child {
  color: var(--footer-bar-muted);
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--footer-bar-link-hover);
}

.footer-bottom a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.contact-list strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.cal-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  min-height: 620px;
}

.cal-embed iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.breakdown {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(130px, 170px) 1fr;
  gap: 10px 28px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  align-items: start;
}

.breakdown-row:last-child {
  border-bottom: none;
}

.breakdown-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.breakdown-row h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.breakdown-row > p,
.breakdown-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.breakdown-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.micro-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px dashed rgba(0, 229, 209, 0.35);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 72ch;
}

.micro-note strong {
  color: var(--text);
  font-weight: 600;
}

.micro-note--post-grid {
  margin-top: 24px;
}

.callout-compact {
  margin: 0 auto;
  max-width: var(--max);
  width: min(var(--max), calc(100% - 40px));
  padding: 18px 20px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.callout-compact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 68ch;
}

.callout-compact p + p {
  margin-top: 12px;
}

.callout-compact strong {
  color: var(--text);
  font-weight: 600;
}

.callout-compact-link {
  font-size: 0.9rem;
}

.qa {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}

.qa-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.qa-item:last-child {
  border-bottom: none;
}

.qa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--text);
  position: relative;
  padding-right: 44px;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  opacity: 0.85;
}

.qa-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.qa-item summary:hover {
  color: var(--accent);
}

.qa-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
}

.qa-answer p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.qa-answer p:first-child {
  margin-top: 16px;
}

/* FAQ: named surface chips (styled text only—not official third-party logos). */
.platform-badges {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.qa-answer .platform-badges + p {
  margin-top: 16px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(18, 26, 23, 0.92);
}

.platform-badge--cargurus {
  color: #fff7f0;
  background: linear-gradient(180deg, #d9480f 0%, #9c2f0a 100%);
  border-color: rgba(255, 200, 160, 0.45);
}

.platform-badge--carscom {
  color: #f8fbff;
  background: linear-gradient(180deg, #0b4f9c 0%, #06356b 100%);
  border-color: rgba(120, 180, 255, 0.45);
}

.platform-badge--autotrader {
  color: #1a1208;
  background: linear-gradient(180deg, #ffb347 0%, #f7931a 100%);
  border-color: rgba(120, 70, 0, 0.35);
}

.platform-badge--vdp {
  color: #041210;
  background: linear-gradient(180deg, var(--accent) 0%, #00c4b3 100%);
  border-color: rgba(0, 229, 209, 0.55);
}

.platform-badges img[aria-hidden="true"] {
  flex-shrink: 0;
}

.text-link-muted {
  color: var(--muted);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link-muted:hover {
  color: var(--accent);
}

.examples-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.example-media {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #141c19;
  font: inherit;
  color: inherit;
}

.example-media img {
  width: 100%;
  display: block;
  vertical-align: bottom;
}

.example-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.example-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0, 229, 209, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.example-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #041210;
}

.example-media:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.example-copy {
  padding: 18px 20px 22px;
}

.example-copy h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.example-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.photo-examples {
  margin-top: 36px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.photo-frame img {
  width: 100%;
  display: block;
}

.photo-frame figcaption {
  padding: 12px 16px 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.photo-examples-title {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.media-carousel {
  margin-top: 28px;
}

.sample-media-cta {
  margin-top: 24px;
}

.sample-media-cta p {
  color: var(--muted);
  margin: 0 0 14px;
}

.media-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.media-carousel__button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.media-carousel__button:hover,
.media-carousel__button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.media-carousel__button:focus-visible,
.media-carousel__track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.media-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, var(--carousel-slide-width));
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.12);
}

.media-carousel__slide {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  scroll-snap-align: start;
}

.media-carousel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--carousel-frame-aspect);
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      var(--carousel-frame-bar-color) 0 var(--carousel-frame-bar-size),
      var(--carousel-frame-stage-color) var(--carousel-frame-bar-size) calc(100% - var(--carousel-frame-bar-size)),
      var(--carousel-frame-bar-color) calc(100% - var(--carousel-frame-bar-size)) 100%
    );
}

.media-carousel__frame > img,
.media-carousel__frame > video {
  position: absolute;
  top: var(--carousel-frame-bar-size);
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: var(--carousel-frame-foreground-height);
  object-fit: contain;
  background: transparent;
}

.media-carousel__slide figcaption {
  padding: 13px 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.media-carousel__slide figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .media-carousel__track {
    scroll-behavior: auto;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.video-modal.hidden {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 6, 0.78);
  backdrop-filter: blur(6px);
}

.video-modal-panel {
  position: relative;
  width: min(920px, calc(100% - 28px));
  margin: 48px auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.video-modal-panel h3 {
  margin: 0 44px 12px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.video-close:hover {
  background: rgba(0, 229, 209, 0.28);
}

#video-player {
  width: 100%;
  border-radius: 10px;
  background: #000;
  max-height: min(70vh, 520px);
}

.cta-panel.flush-top {
  margin-top: 0;
}

.section-intro.is-tight-bottom {
  margin-bottom: 0;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  background: rgba(0, 229, 209, 0.08);
  border-bottom: 1px solid var(--border);
}

.compare-table tbody th[scope="row"] {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  white-space: nowrap;
}

.compare-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 720px) {
  .examples-grid,
  .photo-examples {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .section-heading-row,
  .role-card {
    grid-template-columns: 1fr;
  }

  .role-card > span {
    justify-self: start;
  }

  .careers-openings__layout {
    grid-template-columns: 1fr;
  }

  .careers-role-index {
    position: static;
    grid-template-columns: 1fr;
  }

  .careers-role-index__links {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .role-details summary {
    padding-right: 46px;
  }

  .photo-examples-title {
    grid-column: 1;
  }

  .media-carousel__controls {
    justify-content: flex-start;
  }

  .media-carousel__track {
    grid-auto-columns: minmax(260px, var(--carousel-slide-width-mobile));
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .breakdown-row {
    grid-template-columns: 1fr;
  }
}

/* --- Home tabbed layout (index.html only: body.is-home-tabs) --- */
body.is-home-tabs {
  /* 100vh first so flex + overflow layout stays bounded when dvh is unsupported */
  min-height: 100vh;
  height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.is-home-tabs .site-header {
  flex-shrink: 0;
}

body.is-home-tabs .header-stack {
  padding: 14px 0;
}

body.is-home-tabs .site-footer {
  flex-shrink: 0;
  margin-top: 0;
}

body.is-home-tabs .home-tabs-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.is-home-tabs .home-tablist-wrap {
  /* Tab row stays under the sticky header; only .home-tabpanel-scroll scrolls. */
  flex-shrink: 0;
  z-index: 35;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

body.is-home-tabs .home-tablist {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

body.is-home-tabs .home-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  body.is-home-tabs .home-tab {
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
  }
}

body.is-home-tabs .home-tab:hover {
  color: var(--text);
  border-color: rgba(0, 127, 115, 0.35);
}

body.is-home-tabs .home-tab[aria-selected="true"] {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

body.is-home-tabs .home-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body.is-home-tabs .home-tabs-main {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr);
}

body.is-home-tabs .home-tabpanel {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* `[hidden]` must win over `display:flex` on tab panels, or inactive tabs stack visibly. */
body.is-home-tabs .home-tabpanel[hidden] {
  display: none !important;
}

body.is-home-tabs .home-tabpanel-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.is-home-tabs .hero {
  padding: 40px 0 48px;
}

body.is-home-tabs .hero .container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

body.is-home-tabs .home-tab-section.section {
  padding-top: 40px;
  padding-bottom: 48px;
}

body.is-home-tabs .home-tabpanel--examples .home-tab-section {
  padding-bottom: 32px;
}

body.is-home-tabs #panel-schedule .cta-panel {
  margin-top: 0;
}

/* --- Dealer topic tabs (dealers.html only: body.is-dealers-tabs) --- */
body.is-dealers-tabs .dealers-tablist-wrap {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

body.is-dealers-tabs .dealers-tabs-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

body.is-dealers-tabs .dealers-tablist {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

body.is-dealers-tabs .dealers-tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

body.is-dealers-tabs .dealers-tab:hover {
  color: var(--text);
  border-color: rgba(0, 127, 115, 0.35);
}

body.is-dealers-tabs .dealers-tab[aria-selected="true"] {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

body.is-dealers-tabs .dealers-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body.is-dealers-tabs .dealers-tab-link {
  margin-left: 2px;
}

body.is-dealers-tabs .dealers-tabs-main {
  background: var(--bg);
}

body.is-dealers-tabs .dealers-tabpanel {
  scroll-margin-top: 140px;
}

body.is-dealers-tabs .dealers-tabpanel[hidden] {
  display: none !important;
}

body.is-dealers-tabs .dealers-tabpanel--day0 .callout-compact {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  body.is-dealers-tabs .dealers-tab {
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
  }
}

/* --------------------------------------------------------------------------
   Share-style section skin (slate canvas, blue/sky glows, card chrome).
   Apply `.section-share-skin` on the Examples section container.
   -------------------------------------------------------------------------- */

.section-share-skin {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top-color: var(--share-border-subtle);
  color: var(--share-text);
}

.section-share-skin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle 52% at 18% 10%, var(--share-glow-blue), transparent 34%),
    radial-gradient(circle 48% at 84% 0%, var(--share-glow-sky), transparent 30%),
    linear-gradient(180deg, var(--share-bg-deep) 0%, var(--share-bg-mid) 46%, var(--share-bg-deep) 100%);
  pointer-events: none;
}

.section-share-skin::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--share-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--share-grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.section-share-skin > .container {
  position: relative;
  z-index: 1;
}

.section-share-skin h2 {
  color: var(--share-text);
}

.section-share-skin .section-intro {
  color: var(--share-muted);
}

.section-share-skin .section-intro a {
  color: var(--share-accent-sky);
}

.section-share-skin .section-intro strong {
  color: #e2e8f0;
}

.section-share-skin .sample-media-cta p {
  color: var(--share-muted);
}

.section-share-skin .section-intro a:hover {
  color: #bae6fd;
}

.section-share-skin .eyebrow {
  color: var(--share-accent-sky);
}

.section-share-skin .examples-grid {
  gap: 22px;
}

.section-share-skin .example-card {
  background: var(--share-surface);
  border: 1px solid var(--share-border);
  border-radius: var(--share-radius-lg);
  box-shadow: var(--share-shadow-card);
  backdrop-filter: blur(14px);
}

.section-share-skin .example-media {
  background: var(--share-bg-deep);
}

.section-share-skin .example-media:focus-visible {
  outline: 2px solid var(--share-focus-ring);
  outline-offset: 3px;
}

.section-share-skin .example-copy h3 {
  color: var(--share-text);
}

.section-share-skin .example-copy p {
  color: var(--share-muted);
}

.section-share-skin .example-play {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.92), rgba(59, 130, 246, 0.88));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-share-skin .example-media:hover .example-play {
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.6);
}

.section-share-skin .photo-examples-title {
  color: var(--share-accent-sky);
}

.section-share-skin .photo-frame {
  border-color: var(--share-border);
  background: var(--share-surface-solid);
  border-radius: var(--share-radius-lg);
  box-shadow: var(--share-shadow-card);
}

.section-share-skin .photo-frame figcaption {
  color: var(--share-muted);
}

.section-share-skin .media-carousel__button {
  border-color: var(--share-border);
  background: var(--share-surface-solid);
  color: var(--share-text);
}

.section-share-skin .media-carousel__button:hover,
.section-share-skin .media-carousel__button:focus-visible {
  border-color: var(--share-accent-sky);
  color: var(--share-accent-sky);
}

.section-share-skin .media-carousel__button:focus-visible,
.section-share-skin .media-carousel__track:focus-visible {
  outline-color: var(--share-focus-ring);
}

.section-share-skin .media-carousel__track {
  scrollbar-color: var(--share-accent-sky) rgba(148, 163, 184, 0.18);
}

.section-share-skin .media-carousel__slide {
  border-color: var(--share-border);
  background: var(--share-surface-solid);
  border-radius: var(--share-radius-lg);
  box-shadow: var(--share-shadow-card);
}

.section-share-skin .media-carousel__frame {
  --carousel-frame-bar-color: var(--share-bg-deep);
  --carousel-frame-stage-color: var(--share-surface-solid);
}

.section-share-skin .media-carousel__slide figcaption {
  color: var(--share-muted);
}

.section-share-skin .media-carousel__slide figcaption strong {
  color: var(--share-text);
}

/* Day 0 gap vs traditional window — inline SVG timeline (home + dealers compact) */
.timeline-map {
  margin: 0;
  padding: 16px 18px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.045);
  overflow: visible;
}

.timeline-map__canvas {
  display: block;
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
  height: auto;
  min-height: 0;
  max-height: min(52vh, 420px);
  vertical-align: middle;
  overflow: visible;
}

.timeline-map__canvas .timeline-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-map__canvas .timeline-path--track {
  stroke: rgba(15, 23, 42, 0.32);
  stroke-width: 12;
  opacity: 0.78;
}

.timeline-map__canvas .timeline-band {
  fill: none;
  stroke: rgba(0, 127, 115, 0.14);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-map__canvas .timeline-path--accent {
  stroke: var(--accent);
  stroke-width: 7;
  opacity: 1;
}

.timeline-map__canvas .timeline-pin-stem {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.95;
}

.timeline-map__canvas .timeline-pin--day0 {
  fill: var(--accent);
  stroke: #ffffff;
  stroke-width: 3.5;
  filter: drop-shadow(0 4px 10px rgba(0, 127, 115, 0.28));
}

.timeline-map__canvas .timeline-tagline--day0 {
  fill: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.timeline-map__canvas .timeline-stage-dot {
  fill: #475569;
  stroke: #ffffff;
  stroke-width: 1.6;
}

.timeline-map__canvas .timeline-stage-label {
  fill: #0f172a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.timeline-map__canvas .timeline-stage-markers--compact .timeline-stage-dot {
  fill: #475569;
  stroke: #ffffff;
  stroke-width: 1;
}

.timeline-map__canvas text {
  font-family: var(--font);
}

.timeline-map__canvas .timeline-label {
  font-weight: 700;
}

.timeline-map__canvas .timeline-label--day0 {
  fill: var(--accent);
  font-size: 18px;
}

.timeline-map__canvas .timeline-sublabel--day0 {
  fill: #334155;
  font-size: 14px;
  font-weight: 600;
}

.timeline-map__canvas .timeline-label--band {
  fill: #0f172a;
  font-size: 17px;
}

.timeline-map__canvas .timeline-sublabel--band {
  fill: #475569;
  font-size: 13px;
  font-weight: 600;
}

.timeline-map__caption {
  margin: 0;
  padding: 20px 0 24px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: transparent;
}

.timeline-map__caption strong {
  color: #0f172a;
  font-weight: 700;
}

.timeline-map--compact {
  margin-top: 14px;
  border-radius: 10px;
}

.timeline-map + .grid-3 {
  margin-top: 24px;
}

.timeline-map--compact .timeline-map__canvas {
  max-width: 100%;
  max-height: min(126px, 36vw);
}

.timeline-map--compact .timeline-path--track {
  stroke-width: 9;
  opacity: 0.72;
}

.timeline-map--compact .timeline-band {
  stroke-width: 16;
}

.timeline-map--compact .timeline-path--accent {
  stroke-width: 4.5;
}

.timeline-map--compact .timeline-pin--day0 {
  stroke: #ffffff;
  stroke-width: 2.25;
  filter: drop-shadow(0 3px 7px rgba(0, 127, 115, 0.28));
}

.timeline-map__compact-cap,
.timeline-map--compact figcaption {
  margin: 0;
  padding: 14px 0 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: transparent;
}

.timeline-map__compact-cap strong,
.timeline-map--compact figcaption strong {
  color: #0f172a;
  font-weight: 700;
}

.callout-compact .timeline-map--compact {
  margin-top: 14px;
}

@media (max-width: 560px) {
  .timeline-map__canvas .timeline-sublabel--band {
    display: none;
  }

  .timeline-map__canvas .timeline-label--band {
    font-size: 15px;
  }

  .timeline-map__canvas .timeline-sublabel--day0 {
    font-size: 12px;
  }

  .timeline-map__canvas .timeline-stage-label {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .timeline-map__canvas .timeline-sublabel--day0 {
    display: none;
  }

  .timeline-map__canvas .timeline-stage-label {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .example-media,
  .btn,
  .example-play,
  .qa-item summary::after,
  .role-details summary::after {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section-share-skin .example-media:hover .example-play {
    transform: translate(-50%, -50%) scale(1.04);
  }
}
