@import url("./tokens.css");
* {
  box-sizing: border-box;
}
html {
  background: #222426;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0 auto;
  width: min(100%, var(--fj-app));
  min-height: 100dvh;
  color: var(--fj-text);
  background: var(--fj-white);
  font: 16px/1.6 var(--fj-font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
button svg,
a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
p {
  word-break: keep-all;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--fj-info);
  outline-offset: 5px;
}
.dark a:focus-visible,
.dark button:focus-visible {
  outline-color: var(--fj-yellow-500);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--fj-content), calc(100% - 80px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--fj-yellow-500);
  color: var(--fj-black);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.dark {
  background: var(--fj-black);
  color: var(--fj-white);
}
.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-link img {
  width: 155px;
  height: auto;
}
.dark .logo-link img {
  filter: invert(1);
}
.care-label {
  border-left: 1px solid #666;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--fj-radius-control);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  transition:
    background var(--fj-motion),
    color var(--fj-motion);
}
.button.primary {
  background: var(--fj-yellow-500);
  color: var(--fj-black);
}
.button.primary:hover {
  background: var(--fj-yellow-600);
}
.button.secondary {
  background: transparent;
  border-color: var(--fj-line);
  color: inherit;
}
.dark .button.secondary {
  border-color: #686868;
}
.button.secondary:hover {
  background: #ffffff14;
}
.button.ink {
  background: var(--fj-black);
  color: var(--fj-white);
}
.button.ink:hover {
  background: var(--fj-graphite);
}
.button.small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}
.button:disabled {
  background: #e8e8e8;
  color: #666;
  border-color: #e8e8e8;
}
.button.full {
  width: 100%;
}
.text-link {
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 600;
}
.hero-stage {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  pointer-events: none;
  padding-block: 60px 130px;
}
.hero-copy {
  max-width: 590px;
}
.hero-copy h1 {
  font-size: clamp(44px, 5.45vw, 76px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.hero-copy h1 span {
  display: block;
  color: var(--fj-yellow-500);
}
.hero-copy p {
  font-size: 17px;
  color: var(--fj-dark-muted);
  line-height: 1.8;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  pointer-events: auto;
}
.hero-actions .button {
  min-width: 176px;
}
.hero-film {
  position: absolute;
  width: 64%;
  height: 100%;
  right: -4%;
  top: -3%;
  object-fit: contain;
  z-index: 0;
}
.hero-model-label {
  position: absolute;
  right: 8%;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fj-dark-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hero-model-label b {
  color: var(--fj-white);
  font-size: 15px;
}
.film-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #686868;
  background: transparent;
  color: var(--fj-white);
  padding: 10px 13px;
  min-height: 44px;
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0;
}
.film-toggle svg {
  width: 15px;
  height: 15px;
}
.hero-baseline {
  background: var(--fj-black);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #333;
}
.baseline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  font-size: 13px;
  color: var(--fj-dark-muted);
}
.baseline-inner a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.baseline-inner a:hover {
  color: var(--fj-white);
}
.baseline-inner svg {
  width: 17px;
  height: 17px;
}
.services-strip {
  border-bottom: 1px solid var(--fj-line);
}
.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 38px 36px 0;
  gap: 20px;
}
.service-link + .service-link {
  border-left: 1px solid var(--fj-line);
  padding-left: 42px;
  padding-right: 0;
}
.service-link h2 {
  font-size: 23px;
}
.service-link p {
  color: var(--fj-muted);
  font-size: 14px;
  margin-top: 8px;
}
.service-link:hover h2 {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.service-link > svg {
  width: 28px;
  height: 28px;
}
.section-space {
  padding-block: 96px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: 38px;
  line-height: 1.3;
}
.section-head p {
  color: var(--fj-muted);
  font-size: 15px;
  margin-top: 13px;
}
.section-head > a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.product-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--fj-paper);
  border-radius: var(--fj-radius-panel);
  overflow: hidden;
}
.product-link img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-text {
  padding: 24px 20px 24px 0;
}
.product-text h3 {
  font-size: 26px;
}
.product-text p {
  font-size: 14px;
  color: var(--fj-muted);
  margin-block: 10px 26px;
}
.product-text span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}
.product-link:hover .product-text span {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.process-section {
  padding-block: 86px 88px;
}
.process-section .section-head p {
  color: var(--fj-dark-muted);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 46px 0;
}
.process-steps li {
  border-top: 1px solid #4d4d4d;
  padding-top: 22px;
}
.process-steps .number {
  color: var(--fj-yellow-500);
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.process-steps h3 {
  font-size: 20px;
  margin-top: 32px;
}
.process-steps p {
  color: var(--fj-dark-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.8;
}
.shipping-note {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #333;
  padding-top: 25px;
  font-size: 14px;
  color: var(--fj-dark-muted);
}
.shipping-note svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--fj-yellow-500);
}
.shipping-note strong {
  color: var(--fj-white);
}
.faq {
  max-width: 820px;
}
.faq h2 {
  font-size: 36px;
  margin-bottom: 32px;
}
.faq details {
  border-bottom: 1px solid var(--fj-line);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 24px 40px 24px 0;
  font-weight: 600;
  font-size: 17px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  font-size: 26px;
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  color: var(--fj-muted);
  font-size: 15px;
  line-height: 1.9;
  padding: 0 30px 25px 0;
}
.closing {
  background: var(--fj-yellow-500);
  padding-block: 60px;
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.closing h2 {
  font-size: 38px;
}
.closing p {
  font-size: 15px;
  margin-top: 12px;
}
.site-footer {
  padding-block: 50px;
  color: var(--fj-muted);
  font-size: 12px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.footer-top img {
  width: 130px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer p {
  line-height: 1.9;
}
.copyright {
  margin-top: 18px;
}
.mobile-cta {
  display: none;
}
.preview-note {
  padding: 12px 20px;
  border-radius: var(--fj-radius-control);
  background: var(--fj-yellow-50);
  color: #665100;
  font-size: 13px;
  line-height: 1.65;
}
.preview-note strong {
  color: var(--fj-black);
}
.form-body {
  background: var(--fj-paper);
}
.form-header {
  background: var(--fj-black);
  color: var(--fj-white);
}
.form-header-inner {
  width: min(1040px, calc(100% - 40px));
  margin: auto;
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-header .logo-link img {
  width: 130px;
  filter: invert(1);
}
.form-header .care-label {
  font-size: 12px;
}
.form-header .back-link {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-shell {
  width: min(var(--fj-form), calc(100% - 40px));
  margin: 48px auto 80px;
}
.form-shell.wide {
  width: min(840px, calc(100% - 40px));
}
.form-shell h1 {
  font-size: 34px;
  line-height: 1.3;
  margin: 26px 0 14px;
}
.lead {
  color: var(--fj-muted);
  font-size: 15px;
  line-height: 1.8;
}
.progress {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 30px 0 35px;
  gap: 8px;
  counter-reset: step;
}
.progress li {
  flex: 1;
  border-top: 3px solid #d4d4d4;
  padding-top: 10px;
  font-size: 12px;
  color: var(--fj-muted);
}
.progress li[aria-current="step"] {
  border-color: var(--fj-black);
  color: var(--fj-black);
  font-weight: 700;
}
.progress li.done {
  border-color: var(--fj-yellow-500);
}
.form-panel {
  background: var(--fj-white);
  padding: 30px;
  border-radius: var(--fj-radius-panel);
}
.form-panel h2 {
  font-size: 23px;
  margin-bottom: 26px;
}
.field {
  margin-bottom: 24px;
}
.field > label,
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 9px;
}
.field small,
.hint {
  display: block;
  font-size: 13px;
  color: var(--fj-muted);
  margin-top: 8px;
}
.input,
select,
textarea {
  width: 100%;
  border: 1px solid #a0a0a0;
  border-radius: var(--fj-radius-control);
  background: var(--fj-white);
  padding: 14px 16px;
  min-height: 52px;
  color: var(--fj-text);
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #707070;
}
.input:focus,
select:focus,
textarea:focus {
  border-color: var(--fj-black);
  box-shadow: 0 0 0 2px var(--fj-yellow-500);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
[aria-invalid="true"] {
  border-color: var(--fj-error) !important;
}
.field-error {
  color: var(--fj-error);
  font-size: 13px;
  margin-top: 7px;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.form-actions .button:first-child:not(:only-child) {
  flex: 0 0 100px;
}
.form-actions .button:not([hidden]) {
  flex: 1;
}
.form-actions #previous:not([hidden]) {
  flex: 0 0 100px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-choice {
  border: 1px solid #ccc;
  border-radius: var(--fj-radius-panel);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-choice:has(input:checked) {
  outline: 2px solid var(--fj-black);
  outline-offset: 2px;
}
.product-choice input {
  position: absolute;
  right: 12px;
  top: 12px;
  accent-color: var(--fj-black);
  width: 20px;
  height: 20px;
}
.product-choice img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-choice span {
  display: block;
  padding: 15px;
  font-weight: 700;
  font-size: 14px;
}
.product-choice:has(input:checked) span {
  background: var(--fj-yellow-500);
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  margin-block: 16px;
}
.check-row input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 2px 0;
  accent-color: var(--fj-black);
}
.check-row a {
  text-decoration: underline;
}
.upload {
  display: block;
  border: 1px dashed #888;
  border-radius: var(--fj-radius-control);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  background: var(--fj-paper);
}
.upload input {
  max-width: 100%;
  margin-top: 12px;
  font-size: 13px;
}
.file-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.file-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  word-break: break-all;
}
.file-list img,
.file-list video {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
}
.file-list button {
  margin-left: auto;
  border: 0;
  background: transparent;
  text-decoration: underline;
  min-width: 44px;
  min-height: 44px;
}
.review-list {
  margin: 0;
}
.review-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  font-size: 14px;
}
.review-list dt {
  color: var(--fj-muted);
}
.review-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.summary-note {
  padding: 18px 0;
  color: var(--fj-muted);
  font-size: 13px;
}
.state-message {
  padding: 22px 0;
  line-height: 1.8;
  color: var(--fj-muted);
}
.state-message h2 {
  color: var(--fj-text);
  font-size: 23px;
  margin-bottom: 10px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fj-yellow-100);
  color: #665100;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}
.status-badge.success {
  background: #eaf3ec;
  color: var(--fj-success);
}
.status-badge.error {
  background: #fcece9;
  color: var(--fj-error);
}
.receipt-box {
  padding: 24px;
  background: var(--fj-black);
  color: var(--fj-white);
  border-radius: var(--fj-radius-panel);
  margin: 24px 0;
  overflow-wrap: anywhere;
}
.receipt-box small {
  display: block;
  font-size: 12px;
  color: var(--fj-dark-muted);
  margin-bottom: 12px;
}
.receipt-box strong {
  font-size: 24px;
  letter-spacing: -0.025em;
}
.receipt-box button {
  margin-top: 20px;
}
.success-icon {
  display: inline-flex;
  background: var(--fj-yellow-500);
  color: var(--fj-black);
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 32px;
}
.success-icon svg {
  width: 30px;
  height: 30px;
}
.guide-product {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 34px;
  margin: 32px 0 48px;
}
.guide-product img {
  width: 220px;
  border-radius: var(--fj-radius-panel);
}
.guide-product h1 {
  font-size: 34px;
}
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.system-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--fj-line);
}
.system-section h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.system-section > p {
  font-size: 14px;
  color: var(--fj-muted);
  margin-bottom: 26px;
}
.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.swatch-color {
  height: 100px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.swatch b,
.swatch code {
  display: block;
  font-size: 13px;
}
.swatch code {
  color: var(--fj-muted);
}
.component-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.token-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
.token-table th,
.token-table td {
  text-align: left;
  border-bottom: 1px solid var(--fj-line);
  padding: 14px 10px 14px 0;
  vertical-align: top;
}
.token-table th {
  font-weight: 600;
}
.type-sample {
  margin-top: 25px;
}
.type-sample small {
  display: block;
  color: var(--fj-muted);
  font-size: 12px;
  margin-bottom: 7px;
}
.spacer-top {
  margin-top: 24px;
}
/* A mobile product on every screen, including desktop fullscreen. */

html {
  scroll-padding-top: 24px;
}
.container {
  width: calc(100% - 40px);
}
.site-header {
  height: 76px;
}
.logo-link img {
  width: 137px;
}
.site-nav {
  gap: 0;
  font-size: 13px;
}
.site-nav a:not(.mobile-nav) {
  display: none;
}
.hero-stage {
  min-height: 710px;
  align-items: flex-start;
}
.hero-inner {
  padding-top: 25px;
  padding-bottom: 0;
}
.hero-copy {
  max-width: none;
}
.hero-copy h1 {
  font-size: 46px;
  line-height: 1.18;
}
.hero-copy p {
  font-size: 14px;
  margin-top: 18px;
  line-height: 1.75;
  max-width: 280px;
}
.hero-film {
  width: 300%;
  height: auto;
  aspect-ratio: 4 / 3;
  top: 70px;
  right: -90%;
  opacity: 1;
}
.hero-actions {
  margin-top: 0;
}
.hero-actions .button {
  display: none;
}
.hero-model-label {
  right: 20px;
  bottom: 72px;
  font-size: 10px;
  gap: 8px;
  background: var(--fj-black);
  padding: 8px 0 8px 12px;
  border-radius: var(--fj-radius-control);
}
.hero-model-label b {
  font-size: 12px;
}
.film-toggle {
  padding: 9px 11px;
  font-size: 11px;
}
.baseline-inner {
  min-height: 56px;
  font-size: 11px;
}
.baseline-inner span {
  max-width: 210px;
}
.baseline-inner a {
  gap: 7px;
}
.services-inner {
  display: block;
}
.service-link {
  padding: 28px 0;
}
.service-link + .service-link {
  padding: 28px 0;
  border-left: 0;
  border-top: 1px solid var(--fj-line);
}
.service-link h2 {
  font-size: 22px;
}
.service-link p {
  font-size: 13px;
}
.section-space {
  padding-block: 60px;
}
.section-head {
  align-items: start;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: 29px;
}
.section-head p {
  font-size: 14px;
}
.section-head > a {
  display: none;
}
.product-list {
  gap: 16px;
  grid-template-columns: 1fr;
}
.product-link {
  grid-template-columns: 150px 1fr;
  gap: 20px;
}
.product-link img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: var(--fj-white);
}
.product-text {
  padding: 18px 14px 18px 0;
}
.product-text h3 {
  font-size: 23px;
}
.product-text p {
  margin-bottom: 20px;
}
.process-section {
  padding-block: 60px;
}
.process-steps {
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  margin-top: 36px;
}
.process-steps h3 {
  margin-top: 20px;
  font-size: 19px;
}
.process-steps p {
  font-size: 13px;
}
.shipping-note {
  font-size: 13px;
  align-items: flex-start;
}
.faq h2 {
  font-size: 29px;
  margin-bottom: 18px;
}
.faq summary {
  font-size: 15px;
}
.faq details p {
  font-size: 14px;
}
.closing {
  padding-block: 42px;
}
.closing-inner {
  display: block;
}
.closing h2 {
  font-size: 30px;
}
.closing p {
  font-size: 14px;
}
.closing .button {
  margin-top: 25px;
}
.site-footer {
  padding-block: 36px 110px;
}
.footer-top {
  align-items: start;
  flex-direction: column;
  margin-bottom: 24px;
}
.footer-links {
  gap: 18px;
}
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  right: auto;
  width: min(100%, var(--fj-app));
  transform: translateX(-50%);
  z-index: 20;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: var(--fj-black);
  gap: 10px;
}
.mobile-cta .button {
  flex: 1;
}
.mobile-cta .mobile-lookup {
  flex: 0 0 72px;
  min-width: 0;
  padding-inline: 8px;
  border-color: #686868;
  color: white;
}
.form-header-inner {
  height: 68px;
}
.form-header .logo-link img {
  width: 117px;
}
.form-header .back-link {
  font-size: 12px;
  gap: 6px;
}
.form-shell {
  margin: 26px auto 50px;
}
.form-shell h1 {
  font-size: 29px;
}
.form-panel {
  padding: 24px 20px;
}
.form-actions {
  position: sticky;
  bottom: 0;
  padding-block: 14px;
  background: var(--fj-paper);
  z-index: 5;
}
.progress {
  margin-block: 26px;
}
.guide-product {
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin-block: 25px 32px;
}
.guide-product img {
  width: 120px;
}
.guide-product h1 {
  font-size: 26px;
  margin-top: 0;
}
.guide-product .lead {
  font-size: 13px;
}
.swatches {
  grid-template-columns: 1fr 1fr;
}
.swatch-color {
  height: 86px;
}
.form-shell.wide {
  width: calc(100% - 40px);
}
.receipt-box strong {
  font-size: 20px;
}
.token-table {
  font-size: 12px;
}
.token-table td {
  overflow-wrap: anywhere;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.care-label {
  display: none;
}
.hero-stage {
  min-height: 0;
  height: 748px;
}
.hero-inner {
  padding-top: 26px;
}
.hero-copy h1 {
  font-size: clamp(37px, 9.7vw, 46px);
}
.hero-copy p {
  max-width: 300px;
  color: #dedede;
}
.hero-film {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  top: 0;
  right: 0;
  object-fit: cover;
}
.hero-stage::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #0d0d0d 0%,
    #0d0d0de6 14%,
    #0d0d0d00 43%,
    #0d0d0d00 65%,
    #0d0d0dee 91%
  );
}
.hero-model-label {
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 74px;
  justify-content: space-between;
  padding: 0;
  background: none;
}
.hero-model-label > span {
  margin-left: auto;
  margin-right: 6px;
  font-size: 9px;
}
.hero-baseline {
  z-index: 3;
}
.hero-reel { position: absolute; inset: 0; z-index: 0; }
.hero-reel .hero-film { opacity: 0; z-index: 0; transition: opacity 320ms linear; }
.hero-reel .hero-film.is-active { opacity: 1; z-index: 1; }
.hero-reel .hero-film.is-leaving { opacity: 1; transition: none; }
.hero-playback { position: absolute; z-index: 3; inset: auto 20px 74px; }
.hero-playback .hero-model-label { position: static; }
.hero-film-name { display: grid; gap: 4px; letter-spacing: 0; }
.hero-film-name span { color: var(--fj-dark-muted); font-size: 12px; }
.hero-controls { display: flex; gap: 6px; }
.film-skip { width: 44px; padding: 0; }
.film-toggle:hover { border-color: var(--fj-white); background: #ffffff12; }
.film-toggle:disabled { opacity: .6; cursor: wait; }
.hero-film-progress { height: 2px; background: #ffffff35; margin-top: 16px; overflow: hidden; }
.hero-film-progress span { display: block; height: 100%; background: var(--fj-yellow-500); transform: scaleX(0); transform-origin: left; }
.film-section { background: var(--fj-black); color: var(--fj-white); padding-top: 32px; }
.film-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px 8px; }
.film-heading h2 { font-size: 30px; grid-column: 1 / -1; }
.film-heading p { color: var(--fj-dark-muted); font-size: 13px; }
.film-heading .film-toggle { white-space: nowrap; }
.film-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 12px; margin-top: 24px; }
.film-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #161819; overflow: hidden; }
.film-frame video { display: block; width: 100%; height: 100%; object-fit: contain; }
.film-next { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; min-height: 44px; padding-top: 12px; color: var(--fj-white); font-size: 13px; line-height: 1.7; font-weight: 600; word-break: keep-all; }
.film-next span { color: var(--fj-yellow-500); }
.film-next:hover { text-decoration: underline; text-underline-offset: 4px; }
.film-unavailable { position: absolute; inset: auto 0 0; padding: 8px; background: #0d0d0de8; font-size: 12px; }
.film-credit { padding-block: 12px 24px; font-size: 11px; color: var(--fj-dark-muted); }
.guide-quick-link { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }
.guide-films { margin: 0 0 32px; }
.guide-films h2 { margin: 0 0 16px; font-size: 24px; line-height: 1.3; }
.guide-film-player { margin: 0; }
.guide-film-viewport { position: relative; }
.guide-film-start { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); min-height: 48px; padding: 12px 20px; border: 0; border-radius: 8px; color: var(--fj-black); background: var(--fj-yellow-500); font: inherit; font-size: 15px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.guide-film-start:hover { background: var(--fj-yellow-600); }
.guide-film-start[hidden] { display: none; }
.guide-film-player video { display: block; width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: contain; background: var(--fj-black); border-radius: 12px; }
.guide-film-player figcaption { padding-top: 14px; }
.guide-film-player figcaption b { display: block; font-size: 15px; line-height: 1.5; }
.guide-film-player figcaption p { margin: 4px 0 0; color: var(--fj-muted); font-size: 12px; line-height: 1.6; }
.guide-film-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.guide-film-options button { min-height: 44px; padding: 10px 14px; border: 1px solid var(--fj-line); border-radius: 8px; color: var(--fj-text); background: var(--fj-white); font: inherit; font-size: 13px; cursor: pointer; }
.guide-film-options button[aria-pressed="true"] { border-color: var(--fj-black); background: var(--fj-black); color: var(--fj-white); }
.guide-film-options button:hover { border-color: var(--fj-black); }
.guide-film-error { padding: 16px; margin-top: 12px; background: var(--fj-yellow-50); border-radius: 12px; }
.guide-film-error p { margin: 0 0 10px; font-size: 14px; line-height: 1.6; }
.guide-film-options[hidden], .guide-film-error[hidden] { display: none; }

/* Product stories: full portrait films punctuate a readable mobile editorial. */
.guide-contents { display: flex; gap: 0; margin: 0 0 32px; border-block: 1px solid var(--fj-line); }
.guide-contents a { flex: 1; min-height: 48px; display: grid; place-items: center; font-size: 13px; font-weight: 650; }
.guide-contents a:hover { background: var(--fj-yellow-50); }
.guide-chapter { margin: 0 0 10px; color: var(--fj-muted); font-size: 11px; font-weight: 750; letter-spacing: 1.8px; }
.guide-story { padding-top: 36px; margin: 36px 0 0; border-top: 1px solid var(--fj-line); }
.guide-story h2, .guide-preparation h2 { margin: 0 0 16px; font-size: 24px; line-height: 1.35; letter-spacing: -.7px; text-wrap: balance; }
.guide-story-copy { margin: 0 0 24px; color: var(--fj-muted); font-size: 15px; line-height: 1.85; word-break: keep-all; overflow-wrap: break-word; }
.guide-story-image { margin: 0; padding: 24px; background: var(--fj-paper); border-radius: 12px; }
.guide-story-image img { width: 100%; max-height: 360px; object-fit: contain; }
.guide-story-image figcaption { margin-top: 16px; color: var(--fj-muted); font-size: 12px; line-height: 1.6; }
.guide-preparation { margin: 40px 0 32px; padding: 28px 20px; background: var(--fj-yellow-50); border-top: 3px solid var(--fj-yellow-500); }
.guide-preparation ol { margin: 20px 0 8px; padding-left: 20px; }
.guide-preparation li { padding-left: 4px; margin: 0 0 14px; font-size: 14px; line-height: 1.8; word-break: keep-all; overflow-wrap: break-word; }
.guide-preparation li::marker { font-weight: 750; }
@media (max-width: 359px) {
  .product-link {
    grid-template-columns: 124px 1fr;
    gap: 14px;
  }
  .product-link img {
    width: 124px;
    height: 124px;
  }
  .product-text h3 {
    font-size: 20px;
  }
  .guide-product {
    grid-template-columns: 100px 1fr;
    gap: 14px;
  }
  .guide-product h1 {
    font-size: 24px;
  }
  .button {
    gap: 10px;
    padding-inline: 16px;
  }
}

/* V16: matched portrait gallery and roomier product-guide navigation. */
.film-library-link { padding-block: 20px 32px; }
.guide-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; margin: 36px 0 48px; }
.guide-tabs .button.small { min-height: 50px; padding: 12px 10px; line-height: 1.8; text-align: center; white-space: normal; word-break: keep-all; }
#guide-faq h2 { margin: 0 0 28px; line-height: 1.45; }
#guide-faq summary { padding-block: 26px; line-height: 1.8; }
#guide-faq summary::after { top: 23px; }
#guide-faq details p { padding-bottom: 30px; line-height: 1.95; }

/* Transparent product photography uses the surrounding surface. */
.product-link img { background: transparent; padding: 14px; }
.guide-product img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; padding: 8px; border-radius: 0; }


.film-context { margin: 0; color: var(--fj-dark-muted); font-size: 11px; line-height: 1.7; }
