:root {
  --depth-surface: #f4f7fb;
  --depth-warm: #fff7dc;
  --depth-shadow: 0 18px 52px rgb(7 29 66 / 12%);
}

/* Shared navigation */
.nav-feature { position: relative; }
.desktop-nav > a,
.desktop-nav > .nav-feature > summary {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-feature summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  transform: translateY(-3px);
  cursor: pointer;
  list-style: none;
}
.nav-feature summary::-webkit-details-marker { display: none; }
.nav-feature summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-feature[open] summary::after { transform: translateY(2px) rotate(225deg); }
.nav-feature-panel { position: absolute; top: calc(100% + 8px); left: 50%; display: grid; width: 250px; padding: 8px; border: 1px solid rgb(11 47 107 / 10%); border-radius: 8px; background: rgb(255 255 255 / 98%); box-shadow: var(--depth-shadow); color: var(--blue); transform: translateX(-50%); }
.nav-feature-panel a { padding: 11px 13px; border-radius: 5px; font-size: 15px; white-space: nowrap; }
.nav-feature-panel a:hover,
.nav-feature-panel a:focus-visible { background: var(--blue-soft); }
.mobile-feature-group { display: grid; }
.mobile-feature-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  list-style: none;
}
.mobile-feature-label::-webkit-details-marker { display: none; }
.mobile-feature-label::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.mobile-feature-group[open] .mobile-feature-label::after { transform: translateY(2px) rotate(225deg); }
.mobile-feature-panel { display: grid; padding-left: 18px; }
.mobile-feature-link { font-size: 17px !important; }

.status-badge { display: inline-flex; width: fit-content; min-height: 30px; align-items: center; padding: 5px 12px; border-radius: 999px; background: var(--yellow); color: var(--blue); font-family: "Noto Sans JP", sans-serif; font-size: 12px; font-weight: 900; }
.status-badge-new { background: var(--blue); color: var(--white); }
.hero-b-copy .status-badge { display: flex; min-height: 26px; margin: 0 auto 10px; padding: 4px 10px; font-size: 11px; }

/* Linked features */
.feature-card-link { position: relative; display: flex; min-height: 100%; flex-direction: column; padding: inherit; }
.feature-card:has(.feature-card-link) { padding: 0; }
.feature-more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 28px; color: var(--blue); font-weight: 900; }
.feature-more span { transition: transform .25s ease; }
.feature-card-link:hover .feature-more span { transform: translateX(5px); }

/* Feature detail pages */
.feature-detail { background: var(--white); }
.feature-detail .site-header { color: var(--blue); background: rgb(255 255 255 / 94%); box-shadow: 0 1px 0 rgb(11 47 107 / 10%); backdrop-filter: blur(16px); }
.feature-hero { position: relative; display: grid; min-height: 100svh; place-items: end start; overflow: hidden; color: var(--white); }
.feature-hero-media,
.feature-hero-media::after { position: absolute; inset: 0; }
.feature-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-hero-media::after { content: ""; background: linear-gradient(90deg, rgb(7 29 66 / 88%) 0%, rgb(7 29 66 / 58%) 44%, rgb(7 29 66 / 14%) 78%), linear-gradient(0deg, rgb(7 29 66 / 48%), transparent 55%); }
.feature-hero-content { position: relative; z-index: 1; width: min(calc(100% - 48px), 1240px); margin-inline: auto; padding-block: calc(var(--header-height) + 88px) 84px; }
.feature-hero-word { margin: 0 0 14px; font-family: "Anton", sans-serif; font-size: clamp(68px, 11vw, 164px); line-height: .92; }
.feature-hero h1 { max-width: 840px; margin: 18px 0 16px; color: var(--white); font-size: clamp(34px, 5.3vw, 70px); line-height: 1.25; }
.feature-hero-label { color: var(--yellow); font-family: "Manrope", sans-serif; font-weight: 700; }
.feature-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.feature-lead { padding-block: clamp(88px, 12vw, 168px); background: var(--white); }
.feature-lead p { width: min(calc(100% - 48px), 860px); margin: 0 auto; color: var(--blue); font-family: "Shippori Mincho", serif; font-size: clamp(25px, 3.2vw, 44px); line-height: 2; text-align: center; }
.feature-scenes { border-top: 1px solid var(--line); }
.feature-scene { display: grid; min-height: 78svh; grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr); background: var(--white); }
.feature-scene:nth-child(even) { grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr); background: var(--depth-surface); }
.feature-scene:nth-child(even) .feature-scene-media { order: 2; }
.feature-scene-media { min-height: 640px; overflow: hidden; }
.feature-scene-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.feature-scene:hover .feature-scene-media img { transform: scale(1.025); }
.feature-scene-copy { display: grid; padding: clamp(48px, 7vw, 108px); align-content: center; }
.feature-scene-index { margin-bottom: 22px; color: var(--yellow-ink); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; }
.feature-scene-copy h2 { margin-bottom: 24px; font-size: clamp(34px, 4vw, 58px); }
.feature-scene-copy p:last-child { max-width: 520px; color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); line-height: 2; }
.feature-facts { padding-block: 52px; background: var(--blue); color: var(--white); }
.feature-facts-grid { display: grid; width: min(calc(100% - 48px), 1180px); grid-template-columns: repeat(3, minmax(0, 1fr)); margin-inline: auto; }
.feature-fact { padding: 18px 34px; border-left: 1px solid rgb(255 255 255 / 22%); text-align: center; }
.feature-fact:last-child { border-right: 1px solid rgb(255 255 255 / 22%); }
.feature-fact span { display: block; color: rgb(255 255 255 / 68%); font-size: 13px; font-weight: 700; }
.feature-fact strong { display: block; margin-top: 8px; color: var(--yellow); font-family: "Manrope", "Noto Sans JP", sans-serif; font-size: clamp(27px, 3.3vw, 50px); line-height: 1.2; }
.device-section { padding-block: clamp(90px, 11vw, 150px); background: var(--depth-surface); }
.device-grid { display: grid; width: min(calc(100% - 48px), 1180px); grid-template-columns: minmax(340px, 1.05fr) minmax(300px, .95fr); gap: clamp(52px, 8vw, 112px); align-items: center; margin-inline: auto; }
.device-frame { position: relative; width: min(100%, 640px); aspect-ratio: 16 / 11; padding: 16px; border: 10px solid var(--blue-deep); border-radius: 8px; background: var(--blue-deep); box-shadow: 0 30px 70px rgb(7 29 66 / 20%); }
.device-frame::after { content: ""; position: absolute; top: 5px; left: 50%; width: 70px; height: 5px; border-radius: 999px; background: #3b4b66; transform: translateX(-50%); }
.device-screen { display: grid; height: 100%; overflow: hidden; place-items: center; border-radius: 3px; background: var(--white); }
.ui-placeholder { display: grid; width: min(86%, 500px); gap: 14px; color: var(--muted); }
.ui-placeholder-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--blue); font-weight: 900; }
.ui-placeholder-row { min-height: 58px; padding: 15px; border: 1px solid var(--line); border-left: 5px solid var(--yellow); background: var(--depth-surface); }
.device-copy h2 { font-size: clamp(34px, 4vw, 56px); }
.device-copy > p { color: var(--muted); }
.device-steps { display: grid; gap: 22px; margin-top: 38px; padding: 0; list-style: none; }
.device-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.device-steps span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); font-family: "Manrope", sans-serif; font-weight: 700; }
.device-steps strong { display: block; padding-top: 7px; color: var(--blue); }
.feature-faq { padding-block: clamp(84px, 10vw, 132px); }
.feature-faq-inner { width: min(calc(100% - 48px), 900px); margin-inline: auto; }
.feature-faq h2 { font-size: clamp(34px, 4vw, 54px); }
.feature-faq details { border-top: 1px solid var(--line); }
.feature-faq details:last-child { border-bottom: 1px solid var(--line); }
.feature-faq summary { padding: 24px 44px 24px 0; cursor: pointer; color: var(--blue); font-weight: 900; }
.feature-faq details p { padding: 0 0 24px; color: var(--muted); }

/* Next links */
.next-section { padding-block: clamp(80px, 10vw, 132px); background: var(--depth-surface); }
.next-inner { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }
.next-kicker { color: var(--yellow-ink); font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; }
.next-section h2 { margin-bottom: 42px; font-size: clamp(32px, 4vw, 52px); }
.next-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.next-grid.is-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.next-card { position: relative; min-height: 340px; overflow: hidden; border-radius: 8px; background: var(--blue-deep); color: var(--white); }
.next-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.next-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(7 29 66 / 92%), rgb(7 29 66 / 6%) 75%); }
.next-card-copy { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 26px; }
.next-card small { color: var(--yellow); font-family: "Manrope", sans-serif; font-weight: 700; }
.next-card h3 { margin: 8px 0 0; color: var(--white); font-size: 24px; }
.next-card:hover img { transform: scale(1.035); }
.feature-cta { padding-block: clamp(76px, 9vw, 116px); background: var(--blue-deep); color: var(--white); text-align: center; }
.feature-cta h2 { color: var(--white); font-size: clamp(34px, 4.5vw, 58px); }
.feature-cta-actions { display: flex; justify-content: center; gap: 12px; }

/* Maker */
.maker-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.maker-profile { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 28px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.maker-silhouette { position: relative; min-height: 240px; overflow: hidden; border-radius: 5px; background: #d9dee7; }
.maker-silhouette::before { content: ""; position: absolute; top: 34px; left: 50%; width: 72px; height: 72px; border-radius: 50%; background: #aeb7c5; transform: translateX(-50%); }
.maker-silhouette::after { content: ""; position: absolute; bottom: -32px; left: 50%; width: 170px; height: 170px; border-radius: 50% 50% 0 0; background: #aeb7c5; transform: translateX(-50%); }
.maker-role { color: var(--yellow-ink); font-size: 13px; font-weight: 700; }
.maker-profile h3 { margin-bottom: 14px; overflow-wrap: anywhere; }
.maker-profile p { color: var(--muted); overflow-wrap: anywhere; }
.maker-message { margin-top: 18px; padding: 16px; border-left: 4px solid var(--yellow); background: var(--yellow-soft); color: var(--blue) !important; }
.maker-warning { display: block; margin-bottom: 5px; color: #9b331f; font-size: 12px; font-weight: 900; }

/* Dedicated contact */
.contact-page { min-height: 100vh; background: var(--depth-surface); }
.contact-simple-header { height: var(--header-height); background: var(--white); border-bottom: 1px solid var(--line); }
.contact-simple-header .header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.contact-back { color: var(--blue); font-size: 15px; font-weight: 700; }
.contact-main { padding: calc(var(--header-height) + 50px) 0 90px; }
.contact-shell { width: min(calc(100% - 48px), 1120px); margin-inline: auto; }
.contact-title { margin-bottom: 34px; text-align: center; }
.contact-title h1 { margin-bottom: 10px; color: var(--blue); font-size: clamp(36px, 5vw, 62px); }
.contact-title p { color: var(--muted); }
.contact-tabs { display: grid; width: min(100%, 560px); grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 0 auto 34px; padding: 6px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.contact-tab { min-height: 50px; border: 0; border-radius: 5px; background: var(--white); color: var(--blue); cursor: pointer; font-weight: 900; }
.contact-tab[aria-selected="true"] { background: var(--blue); color: var(--white); }
.contact-tab[aria-selected="false"]:hover { background: var(--blue-soft); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--depth-shadow); }
.contact-offer { padding: clamp(32px, 5vw, 58px); background: var(--blue-deep); color: var(--white); }
.contact-offer h2 { color: var(--white); font-size: clamp(29px, 3vw, 42px); }
.contact-offer > p { color: rgb(255 255 255 / 72%); }
.contact-offer .status-badge { margin-bottom: 24px; }
.contact-doc-badge { padding-inline: 16px; font-size: 14px; }
.contact-trial-note { margin-top: 30px; padding: 18px; border-left: 4px solid var(--yellow); background: rgb(255 255 255 / 8%); color: var(--white) !important; font-weight: 700; }
.contact-offer ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-offer li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: center; }
.contact-list-icon { width: 20px; height: 20px; fill: none; stroke: var(--yellow); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.contact-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.contact-catalog { width: min(100%, 390px); margin: 0 auto 28px; filter: drop-shadow(0 20px 32px rgb(0 0 0 / 28%)); }
.contact-form-wrap { padding: clamp(32px, 5vw, 58px); }
.contact-form-wrap h2 { margin-bottom: 22px; font-size: clamp(28px, 3vw, 40px); }
.contact-delivery-flow { margin-bottom: 32px; padding: 20px; border-left: 4px solid var(--yellow); background: var(--blue-soft); }
.contact-delivery-flow > p { margin: 0 0 14px; color: var(--muted); font-size: 12px; font-weight: 700; }
.contact-delivery-flow ol { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 10px; align-items: center; margin: 0; padding: 0; list-style: none; }
.contact-delivery-flow li:not(.contact-delivery-arrow) { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px; align-items: center; color: var(--blue); font-size: 13px; }
.contact-delivery-flow li span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--yellow); font-family: "Manrope", sans-serif; font-size: 28px; font-weight: 900; line-height: 1; }
.contact-delivery-arrow { color: var(--muted); font-size: 20px; font-weight: 900; }
.contact-step-indicator { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-step-indicator strong { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 12px; letter-spacing: .08em; }
.contact-step-indicator span { color: var(--muted); font-size: 13px; text-align: right; }
.depth-contact-form { display: grid; gap: 18px; }
.contact-form-step { display: grid; gap: 18px; }
.contact-form-step[hidden] { display: none; }
.contact-form-step.is-active { animation: contact-step-reveal .4s ease both; }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.contact-turnstile[hidden] { display: none; }
.contact-form-status { min-height: 1.5em; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-form-status:empty { min-height: 0; }
.contact-form-status.is-error { color: #9a2d2d; }
.contact-form-status.is-success { color: var(--blue); }
.depth-contact-form .button[disabled],
.contact-step-skip[disabled] { opacity: .65; cursor: wait; }
.depth-contact-form label { display: grid; gap: 7px; color: var(--blue); font-size: 14px; font-weight: 700; }
.depth-contact-form input:not([type="radio"]),
.depth-contact-form select { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cbd3df; border-radius: 5px; background: var(--white); color: var(--ink); font-family: inherit; font-size: 16px; }
.depth-contact-form input:not([type="radio"]):focus,
.depth-contact-form select:focus { border-color: var(--blue); outline: 3px solid rgb(246 199 47 / 34%); }
.depth-contact-form .button { width: 100%; min-height: 58px; margin-top: 8px; border: 0; cursor: pointer; }
.contact-submit-note,
.contact-optional-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.contact-optional-note { padding: 14px 16px; border-left: 3px solid var(--yellow); background: var(--yellow-soft); color: var(--blue); }
.contact-optional-note[hidden] { display: none; }
.contact-field-status { margin-left: 3px; }
.contact-field-status.is-optional { color: #adb5bd; font-weight: 500; }
.contact-field-status.is-required { color: var(--blue); }
.contact-field-help { margin-top: -1px; color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.6; }
.contact-field-help[hidden] { display: none; }
.contact-consideration { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.contact-consideration[hidden] { display: none; }
.contact-consideration legend { margin-bottom: 2px; color: var(--blue); font-size: 14px; font-weight: 700; }
.depth-contact-form .contact-radio-option { display: grid; min-height: 50px; grid-template-columns: 20px minmax(0, 1fr); gap: 11px; align-items: center; padding: 12px 14px; border: 1px solid #cbd3df; border-radius: 5px; background: var(--white); cursor: pointer; font-size: 14px; }
.contact-radio-option:hover { border-color: var(--blue); background: var(--blue-soft); }
.contact-radio-option:has(input:checked) { border-color: var(--blue); outline: 3px solid rgb(246 199 47 / 24%); }
.contact-radio-option input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.contact-trial-next-flow { padding: 18px 16px; border: 1px solid #dfe5ee; border-radius: 8px; background: var(--blue-soft); }
.contact-trial-next-flow[hidden] { display: none; }
.contact-trial-next-flow h3 { margin: 0 0 16px; color: var(--blue); font-size: 16px; }
.contact-trial-next-flow ol { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.contact-trial-next-flow ol::before { content: ""; position: absolute; z-index: 0; top: 13px; right: 12.5%; left: 12.5%; height: 2px; background: #c7d0de; }
.contact-trial-next-flow li { position: relative; z-index: 1; display: grid; justify-items: center; align-content: start; gap: 5px; padding-inline: 4px; color: var(--blue); text-align: center; }
.contact-trial-flow-node { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--yellow); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 900; line-height: 1; }
.contact-trial-next-flow li strong { font-size: 11px; line-height: 1.45; }
.contact-trial-next-flow li small { color: var(--muted); font-size: 10px; line-height: 1.35; }
.contact-trial-flow-notes { display: grid; gap: 2px; margin-top: 16px; padding-top: 12px; border-top: 1px solid #d3dbe6; }
.contact-trial-flow-notes p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.depth-contact-form[data-contact-type="doc"] .contact-optional-note { order: 1; }
.depth-contact-form[data-contact-type="doc"] .contact-consideration { order: 2; }
.depth-contact-form[data-contact-type="doc"] [data-contact-field="pharmacy"] { order: 3; }
.depth-contact-form[data-contact-type="doc"] .contact-turnstile { order: 4; }
.depth-contact-form[data-contact-type="doc"] .contact-form-status { order: 5; }
.depth-contact-form[data-contact-type="doc"] .contact-secondary-submit { order: 6; }
.depth-contact-form[data-contact-type="doc"] .contact-step-skip { order: 7; }
.contact-step-skip { justify-self: center; padding: 4px 8px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 13px; }
.contact-step-skip[hidden] { display: none; }
.contact-step-skip:hover { color: var(--blue); }
.contact-complete { display: grid; min-height: 440px; place-content: center; text-align: center; }
.contact-complete-mark { display: grid; width: 70px; height: 70px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); font-size: 30px; font-weight: 900; }
.contact-complete h2 { font-size: clamp(29px, 3vw, 42px); }
.contact-complete p { margin-bottom: 24px; color: var(--muted); }

@keyframes contact-step-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Three-column footer */
.depth-footer .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.depth-footer .footer-brand { grid-column: 1 / -1; }
.depth-footer .footer-column { display: grid; align-content: start; justify-content: start; gap: 9px; }
.footer-column h2 { margin: 0 0 10px; color: var(--yellow); font-size: 13px; }
.footer-column a { color: rgb(255 255 255 / 78%); font-size: 14px; }
.footer-column a:hover { color: var(--white); }
.footer-legal-note { margin: 8px 0 0; color: var(--yellow); font-size: 11px; }
.footer-company-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-company-actions .button { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.depth-footer .footer-meta { display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgb(255 255 255 / 16%); color: rgb(255 255 255 / 60%); font-size: 12px; }

@media (max-width: 1100px) {
  .desktop-nav .nav-feature { display: none; }
  .feature-scene { min-height: 0; grid-template-columns: 1fr 1fr; }
  .feature-scene:nth-child(even) { grid-template-columns: 1fr 1fr; }
  .feature-scene-media { min-height: 500px; }
  .maker-profile { grid-template-columns: 130px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .feature-scene,
  .feature-scene:nth-child(even) { grid-template-columns: 1fr; }
  .feature-scene:nth-child(even) .feature-scene-media { order: initial; }
  .feature-scene-media { min-height: auto; aspect-ratio: 4 / 3; }
  .feature-scene-copy { min-height: 420px; }
  .device-grid { grid-template-columns: 1fr; }
  .device-frame { margin-inline: auto; }
  .next-grid { grid-template-columns: 1fr 1fr; }
  .maker-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-offer { min-height: 520px; }
  .depth-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .depth-footer .footer-brand,
  .depth-footer .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .feature-hero { min-height: 86svh; }
  .feature-hero-media::after { background: linear-gradient(0deg, rgb(7 29 66 / 94%) 0%, rgb(7 29 66 / 48%) 62%, rgb(7 29 66 / 18%)); }
  .feature-hero-content { width: min(calc(100% - 32px), 1240px); padding-block: calc(var(--header-height) + 72px) 46px; }
  .feature-hero-word { font-size: clamp(48px, 15vw, 72px); overflow-wrap: anywhere; }
  .feature-hero h1 { font-size: clamp(30px, 8.8vw, 42px); }
  .feature-hero-actions { flex-direction: column; width: min(100%, 320px); }
  .feature-lead p,
  .feature-facts-grid,
  .device-grid,
  .feature-faq-inner,
  .next-inner { width: min(calc(100% - 32px), 1180px); }
  .feature-lead p { font-size: clamp(22px, 6.5vw, 30px); line-height: 1.9; }
  .feature-scene-copy { min-height: 360px; padding: 44px 24px 54px; }
  .feature-facts-grid { grid-template-columns: 1fr; }
  .feature-fact { padding: 22px 12px; border-right: 0 !important; border-bottom: 1px solid rgb(255 255 255 / 22%); }
  .feature-fact:last-child { border-bottom: 0; }
  .device-frame { aspect-ratio: 4 / 3; padding: 9px; border-width: 7px; }
  .ui-placeholder { gap: 8px; font-size: 12px; }
  .ui-placeholder-row { min-height: 44px; padding: 9px; }
  .next-grid,
  .next-grid.is-two { grid-template-columns: 1fr; }
  .next-card { min-height: 290px; }
  .feature-cta-actions { flex-direction: column; width: min(100% - 32px, 320px); margin-inline: auto; }
  .maker-profile { grid-template-columns: 1fr; padding: 20px; }
  .maker-silhouette { min-height: 280px; }
  .contact-simple-header .header-inner { width: min(calc(100% - 32px), var(--container)); }
  .contact-main { padding-top: calc(var(--header-height) + 30px); }
  .contact-shell { width: min(calc(100% - 32px), 1120px); }
  .contact-layout { overflow: visible; box-shadow: none; }
  .contact-offer { min-height: 0; padding: 32px 22px; }
  .contact-form-wrap { padding: 32px 22px; }
  .contact-delivery-flow { margin-bottom: 32px; padding: 17px 15px; }
  .contact-delivery-flow ol { gap: 7px; }
  .contact-delivery-flow li:not(.contact-delivery-arrow) { grid-template-columns: 44px minmax(0, 1fr); gap: 7px; font-size: 12px; }
  .depth-footer .footer-grid { grid-template-columns: 1fr; }
  .depth-footer .footer-brand,
  .depth-footer .footer-meta { grid-column: auto; }
  .depth-footer .footer-meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-scene-media img,
  .next-card img,
  .nav-feature summary::after { transition: none; }
  .contact-form-step.is-active { animation: none; }
}
/* Temporary public pause for contact applications. */
.contact-paused-panel {
  display: none;
  max-width: 760px;
  margin: 36px auto 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.contact-page.contact-paused .contact-paused-panel {
  display: grid;
  gap: 12px;
}

.contact-page.contact-paused .contact-tabs,
.contact-page.contact-paused .contact-layout,
.contact-page.contact-paused .contact-complete {
  display: none !important;
}

.contact-paused-kicker {
  margin: 0;
  color: #f2c94c;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.contact-paused-panel h2 {
  margin: 0;
  color: #0b3678;
  font-size: clamp(24px, 3.4vw, 38px);
}

.contact-paused-panel p {
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}

.contact-paused-panel a {
  color: #0b3678;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.is-contact-paused {
  cursor: not-allowed;
  opacity: .68;
  pointer-events: none;
}

.contact-paused-label {
  display: inline-block;
  margin-left: .4em;
  padding: .18em .55em;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .68em;
  line-height: 1;
  white-space: nowrap;
}
