/* Wavy FX prototype visual editor
   Developer-only helper for this static prototype. It stores changes in localStorage. */
.wfx-edit-bubble,
.wfx-edit-panel,
.wfx-edit-selection-tag,
.wfx-edit-help {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wfx-edit-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(112, 236, 255, 0.55);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 24%, transparent 25%),
    linear-gradient(145deg, rgba(37, 224, 255, 0.95), rgba(29, 101, 255, 0.92));
  box-shadow: 0 18px 45px rgba(1, 17, 45, 0.42), 0 0 30px rgba(45, 229, 255, 0.45);
  color: #031629;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.wfx-edit-bubble:hover {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.12);
  box-shadow: 0 22px 54px rgba(1, 17, 45, 0.5), 0 0 38px rgba(45, 229, 255, 0.62);
}

.wfx-editor-active .wfx-edit-bubble {
  background: linear-gradient(145deg, #ffffff, #8bf4ff 48%, #6aa8ff);
  box-shadow: 0 20px 58px rgba(1, 17, 45, 0.55), 0 0 0 5px rgba(31, 213, 255, 0.18), 0 0 42px rgba(45, 229, 255, 0.65);
}

.wfx-edit-panel {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 999998;
  width: min(380px, calc(100vw - 28px));
  max-height: min(76vh, 760px);
  overflow: auto;
  border: 1px solid rgba(125, 226, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.94), rgba(4, 14, 35, 0.96)),
    radial-gradient(circle at top left, rgba(69, 229, 255, 0.22), transparent 44%);
  box-shadow: 0 24px 80px rgba(0, 7, 22, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: #edfaff;
  padding: 16px;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.wfx-editor-active .wfx-edit-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wfx-edit-panel * {
  box-sizing: border-box;
}

.wfx-edit-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.wfx-edit-panel-title {
  display: grid;
  gap: 2px;
}

.wfx-edit-panel-title strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.wfx-edit-panel-title span,
.wfx-edit-muted {
  color: rgba(220, 247, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.wfx-edit-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.wfx-edit-selected-name {
  border: 1px solid rgba(75, 220, 255, 0.24);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  color: #bdf5ff;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.wfx-edit-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 12px;
}

.wfx-edit-section h3 {
  margin: 0 0 9px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(197, 243, 255, 0.78);
}

.wfx-edit-row {
  display: grid;
  grid-template-columns: 92px 1fr 72px;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.wfx-edit-row label {
  color: rgba(237, 250, 255, 0.82);
  font-size: 12px;
}

.wfx-edit-row input[type="range"] {
  width: 100%;
  accent-color: #43e8ff;
}

.wfx-edit-row input[type="number"],
.wfx-edit-row input[type="text"],
.wfx-edit-row input[type="url"],
.wfx-edit-row select,
.wfx-edit-textarea {
  min-width: 0;
  border: 1px solid rgba(137, 234, 255, 0.2);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  padding: 8px 9px;
  font-size: 12px;
  outline: none;
}

.wfx-edit-row input[type="number"] {
  width: 72px;
}

.wfx-edit-wide-row {
  display: grid;
  gap: 7px;
  margin: 8px 0;
}

.wfx-edit-wide-row label {
  color: rgba(237, 250, 255, 0.82);
  font-size: 12px;
}

.wfx-edit-wide-row input,
.wfx-edit-wide-row select {
  width: 100%;
}

.wfx-edit-check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0 4px;
  color: rgba(237, 250, 255, 0.86);
  font-size: 12px;
}

.wfx-edit-check-row input {
  accent-color: #43e8ff;
}

.wfx-edit-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.wfx-edit-buttons button,
.wfx-edit-copy-button {
  border: 1px solid rgba(136, 232, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #edfaff;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.wfx-edit-buttons button:hover,
.wfx-edit-copy-button:hover {
  background: rgba(55, 222, 255, 0.16);
}

.wfx-edit-buttons .wfx-edit-primary {
  background: linear-gradient(135deg, #4ae6ff, #6fa4ff);
  color: #031629;
  border-color: transparent;
}

.wfx-edit-copy-output {
  width: 100%;
  min-height: 82px;
  resize: vertical;
  margin-top: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.wfx-editor-active a,
.wfx-editor-active button:not(.wfx-edit-ui button) {
  cursor: crosshair;
}

.wfx-editor-active .wfx-editable-hover {
  outline: 2px dashed rgba(74, 232, 255, 0.72) !important;
  outline-offset: 4px;
}

.wfx-editor-active .wfx-editable-selected {
  outline: 3px solid rgba(105, 246, 255, 0.95) !important;
  outline-offset: 6px;
  box-shadow: 0 0 0 6px rgba(20, 225, 255, 0.14) !important;
}

.wfx-edit-selection-tag {
  position: fixed;
  z-index: 999997;
  pointer-events: none;
  background: rgba(5, 21, 50, 0.92);
  border: 1px solid rgba(97, 235, 255, 0.45);
  color: #eefdff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
}

.wfx-editor-active .wfx-edit-selection-tag.is-visible {
  display: block;
}

.wfx-edit-help {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999996;
  max-width: min(420px, calc(100vw - 120px));
  border: 1px solid rgba(120, 225, 255, 0.18);
  border-radius: 16px;
  background: rgba(4, 16, 39, 0.82);
  color: rgba(235, 251, 255, 0.82);
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  display: none;
  backdrop-filter: blur(12px);
}

.wfx-editor-active .wfx-edit-help {
  display: block;
}

@media (max-width: 760px) {
  .wfx-edit-panel {
    right: 10px;
    bottom: 82px;
    width: calc(100vw - 20px);
    max-height: 72vh;
    border-radius: 20px;
  }

  .wfx-edit-bubble {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }

  .wfx-edit-row {
    grid-template-columns: 86px 1fr 66px;
  }
}

/* v27 deep controls: keep the old click-first workflow, then use the target dropdown only as a fallback. */
.wfx-edit-button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0;
}

.wfx-edit-button-row button {
  border: 1px solid rgba(136, 232, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #edfaff;
  padding: 9px 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.wfx-edit-button-row button:hover {
  background: rgba(55, 222, 255, 0.16);
}

.wfx-edit-panel input:disabled,
.wfx-edit-panel select:disabled,
.wfx-edit-panel button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.wfx-edit-selected-name,
.wfx-edit-wide-row select[data-editor-target-select] {
  user-select: text;
}

/* v28 text editor page and multiline text support. */
.wfx-edit-wide-row textarea,
.wfx-edit-text-control {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  line-height: 1.35;
}

.wfx-edit-text-page[hidden] {
  display: none !important;
}

.wfx-edit-text-page {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(6, 24, 55, 0.98), rgba(4, 14, 35, 0.99)),
    radial-gradient(circle at top left, rgba(69, 229, 255, 0.24), transparent 44%);
  padding: 16px;
}

.wfx-edit-text-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wfx-edit-text-page-header button,
.wfx-edit-full-apply {
  border: 1px solid rgba(136, 232, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #edfaff;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.wfx-edit-text-page-header button:hover,
.wfx-edit-full-apply:hover {
  background: rgba(55, 222, 255, 0.16);
}

.wfx-edit-text-label {
  color: rgba(237, 250, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.wfx-edit-full-textarea {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  line-height: 1.45;
  font-size: 13px;
}

.wfx-edit-full-apply {
  width: 100%;
  background: linear-gradient(135deg, #4ae6ff, #6fa4ff);
  color: #031629;
  border-color: transparent;
}


/* v31/v32 editor mobile safety: fixed overlay only, never part of page layout. */
@media (max-width: 640px) {
  .wfx-edit-bubble {
    position: fixed !important;
    width: 52px !important;
    height: 52px !important;
    right: 12px !important;
    bottom: 12px !important;
  }

  .wfx-edit-panel {
    position: fixed !important;
    right: 10px !important;
    bottom: 74px !important;
    width: calc(100vw - 20px) !important;
    max-height: 72vh !important;
  }
}

/* v33 responsive editor modes: desktop/tablet/phone saved separately. */
.wfx-edit-mode-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.wfx-edit-mode-toggle button,
.wfx-edit-publish-wide {
  border: 1px solid rgba(136, 232, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #edfaff;
  padding: 10px 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
}

.wfx-edit-mode-toggle button:hover,
.wfx-edit-publish-wide:hover {
  background: rgba(55, 222, 255, 0.16);
}

.wfx-edit-mode-toggle button.is-active {
  background: linear-gradient(135deg, #4ae6ff, #6fa4ff);
  color: #031629;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(67, 232, 255, 0.14);
}

.wfx-edit-publish-wide {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #4ae6ff, #6fa4ff);
  color: #031629;
  border-color: transparent;
}

/* Preview canvases only appear while the editor is active and a non-desktop mode is chosen. */
body.wfx-phone-edit-preview,
body.wfx-tablet-edit-preview {
  background: #dfe5f0 !important;
}

body.wfx-phone-edit-preview .site-header,
body.wfx-phone-edit-preview #main,
body.wfx-phone-edit-preview footer {
  max-width: 390px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.wfx-tablet-edit-preview .site-header,
body.wfx-tablet-edit-preview #main,
body.wfx-tablet-edit-preview footer {
  max-width: 768px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.wfx-phone-edit-preview .nav-links {
  display: none !important;
}

body.wfx-phone-edit-preview .hero,
body.wfx-phone-edit-preview .split,
body.wfx-phone-edit-preview .split.reverse,
body.wfx-phone-edit-preview .site-modes,
body.wfx-phone-edit-preview .site-mode-card,
body.wfx-tablet-edit-preview .hero,
body.wfx-tablet-edit-preview .split,
body.wfx-tablet-edit-preview .split.reverse,
body.wfx-tablet-edit-preview .site-modes,
body.wfx-tablet-edit-preview .site-mode-card {
  grid-template-columns: 1fr !important;
}

body.wfx-phone-edit-preview .hero {
  width: min(100% - 18px, 420px) !important;
  max-width: 100% !important;
  min-height: auto !important;
  padding: 32px 18px 38px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

body.wfx-tablet-edit-preview .hero {
  width: min(100% - 20px, 760px) !important;
  max-width: 100% !important;
  min-height: auto !important;
  padding: clamp(34px, 7vw, 64px) clamp(18px, 5vw, 42px) clamp(42px, 8vw, 72px) !important;
  overflow: hidden !important;
}

body.wfx-phone-edit-preview .hero-bg {
  border-radius: 28px !important;
}

body.wfx-phone-edit-preview .hero-copy,
body.wfx-phone-edit-preview .hero-video-showcase,
body.wfx-phone-edit-preview .split-copy,
body.wfx-phone-edit-preview .panel-preview,
body.wfx-phone-edit-preview .phone-preview,
body.wfx-phone-edit-preview .site-mode-card,
body.wfx-phone-edit-preview .section-heading,
body.wfx-tablet-edit-preview .hero-copy,
body.wfx-tablet-edit-preview .hero-video-showcase,
body.wfx-tablet-edit-preview .split-copy,
body.wfx-tablet-edit-preview .panel-preview,
body.wfx-tablet-edit-preview .phone-preview,
body.wfx-tablet-edit-preview .site-mode-card,
body.wfx-tablet-edit-preview .section-heading {
  width: 100% !important;
  max-width: 100% !important;
  justify-self: stretch !important;
}

body.wfx-phone-edit-preview .panel-preview,
body.wfx-phone-edit-preview .phone-preview,
body.wfx-phone-edit-preview .site-mode-card,
body.wfx-tablet-edit-preview .panel-preview,
body.wfx-tablet-edit-preview .phone-preview,
body.wfx-tablet-edit-preview .site-mode-card {
  transform: none !important;
}

body.wfx-phone-edit-preview .hero-brand {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

body.wfx-phone-edit-preview .hero-brand-main {
  font-size: clamp(3rem, 15.5vw, 4.2rem) !important;
  line-height: 0.84 !important;
  transform: none !important;
  max-width: 100% !important;
}

body.wfx-phone-edit-preview .hero-brand-sub {
  font-size: clamp(2.45rem, 12.5vw, 3.35rem) !important;
  line-height: 0.86 !important;
  margin-left: 0 !important;
  transform: none !important;
  max-width: 100% !important;
}

body.wfx-phone-edit-preview .hero-video-shell,
body.wfx-phone-edit-preview .panel-preview,
body.wfx-phone-edit-preview .phone-preview {
  width: 100% !important;
  max-width: 100% !important;
}

body.wfx-phone-edit-preview .phone-screen {
  width: min(100%, 360px) !important;
  margin-inline: auto !important;
}

/* v34 responsive visual editor preview-device upgrade.
   These rules only apply while the prototype editor is active and a preview device is selected. */
.wfx-edit-device-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wfx-edit-device-toggle button,
.wfx-edit-custom-preview button {
  border: 1px solid rgba(120, 210, 255, 0.25);
  background: rgba(4, 19, 35, 0.72);
  color: #e9fbff;
  border-radius: 12px;
  min-height: 34px;
  padding: 8px 9px;
  cursor: pointer;
  font-weight: 900;
  font-size: 11px;
}

.wfx-edit-device-toggle button:hover,
.wfx-edit-custom-preview button:hover {
  background: rgba(55, 222, 255, 0.16);
}

.wfx-edit-device-toggle button.is-active {
  background: linear-gradient(135deg, #4ae6ff, #6fa4ff);
  color: #031629;
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(67, 232, 255, 0.14);
}

.wfx-edit-custom-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.wfx-edit-custom-preview label {
  font-size: 11px;
  color: rgba(229, 249, 255, 0.72);
  font-weight: 900;
}

.wfx-edit-custom-preview input {
  width: 100%;
  border: 1px solid rgba(120, 210, 255, 0.2);
  border-radius: 10px;
  background: rgba(1, 13, 26, 0.74);
  color: #eafcff;
  padding: 8px;
  min-height: 34px;
}

body.wfx-preview-active {
  background: #dfe5f0 !important;
  --wfx-preview-width: 390px;
  --wfx-preview-height: 844px;
}

body.wfx-preview-active .site-header,
body.wfx-preview-active #main,
body.wfx-preview-active footer {
  width: var(--wfx-preview-width) !important;
  max-width: var(--wfx-preview-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.wfx-preview-active #main {
  box-shadow: 0 22px 70px rgba(4, 18, 40, 0.22);
  border-radius: 32px;
}

body.wfx-preview-phone .nav-links {
  display: none !important;
}

body.wfx-preview-phone .hero,
body.wfx-preview-phone .split,
body.wfx-preview-phone .split.reverse,
body.wfx-preview-phone .site-modes,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-tablet .hero,
body.wfx-preview-tablet .split,
body.wfx-preview-tablet .split.reverse,
body.wfx-preview-tablet .site-modes,
body.wfx-preview-tablet .site-mode-card {
  grid-template-columns: 1fr !important;
}

body.wfx-preview-phone .hero {
  width: min(100% - 18px, 420px) !important;
  max-width: 100% !important;
  min-height: auto !important;
  padding: 32px 18px 38px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
}

body.wfx-preview-tablet .hero {
  width: min(100% - 20px, 760px) !important;
  max-width: 100% !important;
  min-height: auto !important;
  padding: clamp(34px, 7vw, 64px) clamp(18px, 5vw, 42px) clamp(42px, 8vw, 72px) !important;
  overflow: hidden !important;
}

body.wfx-preview-phone .hero-bg {
  border-radius: 28px !important;
}

body.wfx-preview-phone .hero-copy,
body.wfx-preview-phone .hero-video-showcase,
body.wfx-preview-phone .split-copy,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .section-heading,
body.wfx-preview-tablet .hero-copy,
body.wfx-preview-tablet .hero-video-showcase,
body.wfx-preview-tablet .split-copy,
body.wfx-preview-tablet .panel-preview,
body.wfx-preview-tablet .phone-preview,
body.wfx-preview-tablet .site-mode-card,
body.wfx-preview-tablet .section-heading {
  width: 100% !important;
  max-width: 100% !important;
  justify-self: stretch !important;
}

body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-tablet .panel-preview,
body.wfx-preview-tablet .phone-preview,
body.wfx-preview-tablet .site-mode-card {
  transform: none !important;
}

body.wfx-preview-phone .hero-brand {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

body.wfx-preview-phone .hero-brand-main {
  font-size: clamp(3rem, 15.5vw, 4.2rem) !important;
  line-height: 0.84 !important;
  transform: none !important;
  max-width: 100% !important;
}

body.wfx-preview-phone .hero-brand-sub {
  font-size: clamp(2.45rem, 12.5vw, 3.35rem) !important;
  line-height: 0.86 !important;
  margin-left: 0 !important;
  transform: none !important;
  max-width: 100% !important;
}

body.wfx-preview-phone .hero-video-shell,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview {
  width: 100% !important;
  max-width: 100% !important;
}

body.wfx-preview-phone .phone-screen {
  width: min(100%, 360px) !important;
  margin-inline: auto !important;
}

body.wfx-preview-tablet .phone-screen {
  margin-inline: auto !important;
}

/* v35 preview-device phone presentation patch.
   Mirrors the real phone layout while the editor previews an iPhone/Samsung-sized canvas.
   It only applies when the visual editor preview is active, so desktop remains untouched. */
body.wfx-preview-active,
body.wfx-preview-active #main {
  overflow-x: hidden !important;
}

body.wfx-preview-phone .site-header {
  position: sticky !important;
  top: 0 !important;
  width: min(var(--wfx-preview-width), 390px) !important;
  max-width: var(--wfx-preview-width) !important;
  margin-inline: auto !important;
  padding: 10px 12px !important;
  border-radius: 0 0 22px 22px !important;
}

body.wfx-preview-phone .brand-icon { width: 38px !important; height: 38px !important; }
body.wfx-preview-phone .brand-name { font-size: 0.86rem !important; }
body.wfx-preview-phone .brand-sub { font-size: 0.72rem !important; }
body.wfx-preview-phone .header-cta { padding: 10px 12px !important; font-size: 0.78rem !important; }

body.wfx-preview-phone .section,
body.wfx-preview-phone .hero,
body.wfx-preview-phone .section.intro,
body.wfx-preview-phone .section.split,
body.wfx-preview-phone .section.split.reverse,
body.wfx-preview-phone .section.site-modes {
  width: min(100% - 18px, 390px) !important;
  max-width: 390px !important;
  margin-inline: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  overflow: hidden !important;
}

body.wfx-preview-phone .section {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

body.wfx-preview-phone .hero {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  padding-top: 34px !important;
  padding-bottom: 32px !important;
  border-radius: 28px !important;
  min-height: auto !important;
}

body.wfx-preview-phone .hero-bg { inset: 0 !important; border-radius: 28px !important; }

body.wfx-preview-phone .hero-copy,
body.wfx-preview-phone .hero-video-showcase,
body.wfx-preview-phone .section-heading,
body.wfx-preview-phone .split-copy,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .glass-card,
body.wfx-preview-phone .module-card,
body.wfx-preview-phone .benefit-grid article {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  justify-self: stretch !important;
}

body.wfx-preview-phone .hero .eyebrow {
  max-width: 100%;
  padding: 7px 11px !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.09em !important;
}

body.wfx-preview-phone .hero-brand {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  filter: drop-shadow(0 18px 28px rgba(3, 32, 60, .20));
}

body.wfx-preview-phone .hero-brand-main {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  font-size: clamp(3.15rem, 15.2vw, 4.2rem) !important;
  line-height: 0.84 !important;
  letter-spacing: -0.075em !important;
  white-space: nowrap !important;
  transform: none !important;
}

body.wfx-preview-phone .hero-brand-sub {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-top: 5px !important;
  font-size: clamp(2.05rem, 10.2vw, 2.86rem) !important;
  line-height: 0.86 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  transform: none !important;
  text-align: left !important;
}

body.wfx-preview-phone .hero-brand-sub > span { flex: 0 1 auto !important; min-width: 0 !important; }

body.wfx-preview-phone .motto {
  max-width: 100% !important;
  margin-top: 18px !important;
  font-size: clamp(1.08rem, 5.2vw, 1.35rem) !important;
  line-height: 1.17 !important;
  letter-spacing: -0.035em !important;
}

body.wfx-preview-phone .hero-text,
body.wfx-preview-phone .hero-text-large,
body.wfx-preview-phone .section-heading p,
body.wfx-preview-phone .split-copy p,
body.wfx-preview-phone .site-mode-copy p:not(.eyebrow),
body.wfx-preview-phone .glass-card p,
body.wfx-preview-phone .module-card p,
body.wfx-preview-phone .benefit-grid p {
  max-width: 100% !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  overflow-wrap: break-word !important;
}

body.wfx-preview-phone .platform-pills,
body.wfx-preview-phone .mini-chips,
body.wfx-preview-phone .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  max-width: 100% !important;
}

body.wfx-preview-phone .platform-pills span,
body.wfx-preview-phone .mini-chips span {
  flex: 0 1 auto !important;
  min-height: 30px !important;
  padding: 7px 10px !important;
  font-size: 0.68rem !important;
}

body.wfx-preview-phone .hero-actions .button {
  flex: 1 1 135px !important;
  min-width: 0 !important;
  padding: 12px 14px !important;
  text-align: center !important;
}

body.wfx-preview-phone .hero-video-showcase { margin-top: 4px !important; }
body.wfx-preview-phone .hero-video-shell { width: 100% !important; padding: 10px !important; border-radius: 24px !important; }
body.wfx-preview-phone .hero-video-card { min-height: clamp(184px, 54vw, 238px) !important; border-radius: 18px !important; }
body.wfx-preview-phone .hero-feature-ribbon { grid-template-columns: 1fr !important; gap: 9px !important; }
body.wfx-preview-phone .hero-feature-ribbon span { min-height: 42px !important; border-radius: 14px !important; }

body.wfx-preview-phone .section-heading { margin-bottom: 22px !important; }

body.wfx-preview-phone .section h2,
body.wfx-preview-phone .split-copy h2,
body.wfx-preview-phone .site-mode-copy h3 {
  max-width: 100% !important;
  font-size: clamp(2.05rem, 10.6vw, 3.15rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  overflow-wrap: break-word !important;
}

body.wfx-preview-phone .glass-grid,
body.wfx-preview-phone .glass-grid.four,
body.wfx-preview-phone .glass-grid.three,
body.wfx-preview-phone .module-grid,
body.wfx-preview-phone .benefit-grid,
body.wfx-preview-phone .roadmap,
body.wfx-preview-phone .footer-grid,
body.wfx-preview-phone .compact-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

body.wfx-preview-phone .glass-card,
body.wfx-preview-phone .module-card,
body.wfx-preview-phone .benefit-grid article {
  padding: 18px !important;
  border-radius: 24px !important;
}

body.wfx-preview-phone .card-icon,
body.wfx-preview-phone .module-icon,
body.wfx-preview-phone .benefit-grid span {
  min-width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
}

body.wfx-preview-phone .split,
body.wfx-preview-phone .split.reverse,
body.wfx-preview-phone .site-mode-panel.active,
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen,
body.wfx-preview-phone .site-mode-shell,
body.wfx-preview-phone .mode-panels,
body.wfx-preview-phone .site-modes,
body.wfx-preview-phone .site-mode-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

body.wfx-preview-phone .dashboard-preview,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .desktop-preview,
body.wfx-preview-phone .mini-phone-preview,
body.wfx-preview-phone .device-stack {
  transform: none !important;
}

body.wfx-preview-phone .panel-preview {
  display: grid !important;
  grid-template-columns: 1fr !important;
  border-radius: 26px !important;
  overflow: hidden !important;
}

body.wfx-preview-phone .panel-sidebar { display: none !important; }
body.wfx-preview-phone .panel-main { padding: 14px !important; }
body.wfx-preview-phone .panel-hero { min-height: 82px !important; border-radius: 20px !important; font-size: clamp(1.35rem, 7vw, 1.95rem) !important; line-height: 1 !important; text-align: center !important; }
body.wfx-preview-phone .panel-row { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 9px !important; }
body.wfx-preview-phone .panel-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
body.wfx-preview-phone .panel-row span,
body.wfx-preview-phone .panel-cards span { min-height: 44px !important; padding: 8px !important; font-size: 0.64rem !important; line-height: 1.12 !important; }
body.wfx-preview-phone .panel-cards span { min-height: 78px !important; }

body.wfx-preview-phone .phone-preview { width: 100% !important; max-width: 100% !important; margin-inline: auto !important; padding: 10px !important; border-radius: 30px !important; overflow: visible !important; }
body.wfx-preview-phone .phone-screen { width: min(100%, 332px) !important; max-width: 100% !important; height: auto !important; min-height: 610px !important; margin-inline: auto !important; padding: 8px !important; border-width: 6px !important; border-radius: 28px !important; overflow: hidden !important; }
body.wfx-preview-phone .phone-extension-banner { min-height: 108px !important; padding: 14px 42px 12px !important; border-radius: 22px !important; }
body.wfx-preview-phone .phone-menu-bubble { left: 12px !important; top: 12px !important; width: 32px !important; height: 32px !important; }
body.wfx-preview-phone .phone-demo-pill { right: 10px !important; top: 12px !important; padding: 7px 10px !important; font-size: 0.58rem !important; }
body.wfx-preview-phone .phone-brand-lockup strong { font-size: clamp(1.75rem, 10vw, 2.45rem) !important; line-height: 0.9 !important; }
body.wfx-preview-phone .phone-brand-lockup span { font-size: 0.58rem !important; letter-spacing: 0.11em !important; }
body.wfx-preview-phone .phone-category-row,
body.wfx-preview-phone .phone-sub-tabs,
body.wfx-preview-phone .mini-chips,
body.wfx-preview-phone .mode-switch { max-width: 100% !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
body.wfx-preview-phone .phone-trigger-grid,
body.wfx-preview-phone .phone-card-grid.two-col,
body.wfx-preview-phone .phone-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
body.wfx-preview-phone .phone-info-list,
body.wfx-preview-phone .phone-achievement-card,
body.wfx-preview-phone .phone-command-card,
body.wfx-preview-phone .phone-support-goal { min-width: 0 !important; }
body.wfx-preview-phone .phone-preview-note { max-width: 100% !important; margin: 14px auto 0 !important; padding-inline: 6px !important; font-size: 0.72rem !important; line-height: 1.35 !important; text-align: center !important; overflow-wrap: break-word !important; }

body.wfx-preview-phone .site-mode-card { padding: 18px !important; border-radius: 28px !important; }
body.wfx-preview-phone .mode-switch { justify-content: flex-start !important; padding: 6px !important; border-radius: 20px !important; }
body.wfx-preview-phone .mode-switch button { flex: 0 0 auto !important; padding: 9px 12px !important; font-size: 0.74rem !important; }
body.wfx-preview-phone .site-mode-panel.active { margin-top: 20px !important; }
body.wfx-preview-phone .device-stack { min-height: auto !important; display: block !important; }
body.wfx-preview-phone .desktop-preview { width: 100% !important; max-width: 100% !important; padding: 9px !important; border-radius: 24px !important; }
body.wfx-preview-phone .desktop-screen { min-height: auto !important; border-radius: 18px !important; }
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen { padding: 14px !important; }
body.wfx-preview-phone .site-profile-card,
body.wfx-preview-phone .site-feature-rail article { padding: 16px !important; border-radius: 18px !important; }
body.wfx-preview-phone .mini-phone-preview { position: relative !important; right: auto !important; bottom: auto !important; width: min(100%, 180px) !important; margin: 16px auto 0 !important; }
body.wfx-preview-phone .site-mode-copy { max-width: 100% !important; }

/* v36 preview-device phone polish.
   Uses fixed preview-sized values instead of viewport vw units, so iPhone preview
   matches the 390px canvas instead of the full desktop browser width. */
body.wfx-preview-phone,
body.wfx-preview-phone #main {
  overflow-x: hidden !important;
}

body.wfx-preview-phone .site-header {
  width: min(var(--wfx-preview-width), 390px) !important;
  max-width: var(--wfx-preview-width) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px 10px !important;
  padding: 10px 12px 12px !important;
  border-radius: 0 0 22px 22px !important;
}
body.wfx-preview-phone .brand-mark { flex: 1 1 auto !important; min-width: 0 !important; }
body.wfx-preview-phone .header-cta { flex: 0 0 auto !important; padding: 10px 12px !important; font-size: 0.78rem !important; }
body.wfx-preview-phone .nav-links {
  order: 3 !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  padding: 4px 1px 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.wfx-preview-phone .nav-links::-webkit-scrollbar { display: none; }
body.wfx-preview-phone .nav-links a {
  flex: 0 0 auto !important;
  min-height: 28px !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(10, 166, 255, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.wfx-preview-phone .section,
body.wfx-preview-phone .hero,
body.wfx-preview-phone .section.intro,
body.wfx-preview-phone .section.split,
body.wfx-preview-phone .section.split.reverse,
body.wfx-preview-phone .section.site-modes,
body.wfx-preview-phone .section.showcase,
body.wfx-preview-phone .section.mission-band,
body.wfx-preview-phone .section.compatibility,
body.wfx-preview-phone .section.beta-cta {
  width: min(100% - 18px, 390px) !important;
  max-width: 390px !important;
  margin-inline: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}
body.wfx-preview-phone .section { padding-top: 52px !important; padding-bottom: 52px !important; }
body.wfx-preview-phone .hero { padding-top: 30px !important; padding-bottom: 30px !important; }

body.wfx-preview-phone .hero,
body.wfx-preview-phone .split,
body.wfx-preview-phone .split.reverse,
body.wfx-preview-phone .site-mode-panel.active,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .site-mode-shell,
body.wfx-preview-phone .mode-panels,
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

body.wfx-preview-phone .hero-copy,
body.wfx-preview-phone .hero-video-showcase,
body.wfx-preview-phone .section-heading,
body.wfx-preview-phone .split-copy,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .desktop-preview,
body.wfx-preview-phone .device-stack,
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen,
body.wfx-preview-phone .glass-card,
body.wfx-preview-phone .module-card,
body.wfx-preview-phone .benefit-grid article {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  justify-self: stretch !important;
  transform: none !important;
  scale: none !important;
}
body.wfx-preview-phone .hero-copy { order: 1 !important; position: relative !important; z-index: 2 !important; }
body.wfx-preview-phone .hero-video-showcase { order: 2 !important; position: relative !important; z-index: 1 !important; margin-top: 16px !important; }

body.wfx-preview-phone .hero-brand { width: 100% !important; max-width: 100% !important; overflow: visible !important; }
body.wfx-preview-phone .hero-brand-main {
  width: 100% !important;
  max-width: 100% !important;
  font-size: 3.18rem !important;
  line-height: 0.88 !important;
  letter-spacing: -0.07em !important;
  white-space: nowrap !important;
  transform: none !important;
}
body.wfx-preview-phone .hero-brand-sub {
  width: 100% !important;
  max-width: 100% !important;
  margin: 5px 0 0 !important;
  font-size: 2.22rem !important;
  line-height: 0.9 !important;
  white-space: nowrap !important;
  transform: none !important;
}

body.wfx-preview-phone .motto { margin-top: 18px !important; font-size: 1.12rem !important; line-height: 1.22 !important; }
body.wfx-preview-phone .hero-text,
body.wfx-preview-phone .hero-text-large,
body.wfx-preview-phone .section-heading p,
body.wfx-preview-phone .split-copy p,
body.wfx-preview-phone .site-mode-copy p:not(.eyebrow),
body.wfx-preview-phone .glass-card p,
body.wfx-preview-phone .module-card p,
body.wfx-preview-phone .benefit-grid p {
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
  max-width: 100% !important;
  overflow-wrap: break-word !important;
}
body.wfx-preview-phone .section h2,
body.wfx-preview-phone .split-copy h2,
body.wfx-preview-phone .site-mode-copy h3 {
  max-width: 100% !important;
  font-size: 2.42rem !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}
body.wfx-preview-phone .section-heading { margin-bottom: 20px !important; }
body.wfx-preview-phone .eyebrow { font-size: 0.68rem !important; letter-spacing: 0.11em !important; }

body.wfx-preview-phone .platform-pills,
body.wfx-preview-phone .mini-chips,
body.wfx-preview-phone .hero-actions,
body.wfx-preview-phone .mode-switch {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  max-width: 100% !important;
  overflow: visible !important;
}
body.wfx-preview-phone .hero-actions .button { flex: 1 1 132px !important; min-width: 0 !important; }

body.wfx-preview-phone .glass-grid,
body.wfx-preview-phone .glass-grid.four,
body.wfx-preview-phone .glass-grid.three,
body.wfx-preview-phone .module-grid,
body.wfx-preview-phone .benefit-grid,
body.wfx-preview-phone .roadmap,
body.wfx-preview-phone .footer-grid,
body.wfx-preview-phone .compact-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

body.wfx-preview-phone .hero-video-shell { width: 100% !important; max-width: 100% !important; padding: 10px !important; border-radius: 24px !important; }
body.wfx-preview-phone .hero-video-card { min-height: 184px !important; border-radius: 18px !important; }
body.wfx-preview-phone .hero-feature-ribbon { grid-template-columns: 1fr !important; gap: 8px !important; }

body.wfx-preview-phone .panel-preview { display: grid !important; grid-template-columns: 1fr !important; min-height: auto !important; border-radius: 26px !important; overflow: hidden !important; }
body.wfx-preview-phone .panel-sidebar { display: none !important; }
body.wfx-preview-phone .panel-main { padding: 14px !important; }
body.wfx-preview-phone .panel-hero { min-height: 78px !important; font-size: 1.65rem !important; line-height: 1 !important; text-align: center !important; }
body.wfx-preview-phone .panel-row { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 8px !important; }
body.wfx-preview-phone .panel-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 9px !important; }
body.wfx-preview-phone .panel-row span,
body.wfx-preview-phone .panel-cards span { min-height: 42px !important; padding: 8px !important; font-size: 0.62rem !important; line-height: 1.15 !important; }
body.wfx-preview-phone .panel-cards span { min-height: 76px !important; }

body.wfx-preview-phone .phone-preview { padding: 10px !important; border-radius: 28px !important; overflow: visible !important; }
body.wfx-preview-phone .phone-screen { width: min(100%, 320px) !important; max-width: 100% !important; height: auto !important; min-height: 600px !important; margin-inline: auto !important; padding: 8px !important; border-width: 6px !important; border-radius: 28px !important; overflow: hidden !important; }
body.wfx-preview-phone .phone-extension-banner { min-height: 104px !important; padding: 14px 42px 12px !important; border-radius: 22px !important; }
body.wfx-preview-phone .phone-brand-lockup strong { font-size: 2.12rem !important; line-height: .9 !important; }
body.wfx-preview-phone .phone-brand-lockup span { font-size: .56rem !important; letter-spacing: .1em !important; }
body.wfx-preview-phone .phone-trigger-grid,
body.wfx-preview-phone .phone-card-grid.two-col,
body.wfx-preview-phone .phone-media-grid,
body.wfx-preview-phone .phone-quick-grid,
body.wfx-preview-phone .phone-quick-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 9px !important; }

body.wfx-preview-phone .site-mode-card { padding: 16px !important; border-radius: 28px !important; }
body.wfx-preview-phone .site-mode-panel.active { margin-top: 18px !important; }
body.wfx-preview-phone .device-stack { display: grid !important; gap: 16px !important; min-height: auto !important; }
body.wfx-preview-phone .desktop-preview { width: 100% !important; max-width: 100% !important; padding: 9px !important; border-radius: 24px !important; }
body.wfx-preview-phone .desktop-screen { min-height: auto !important; border-radius: 18px !important; }
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen { padding: 14px !important; }
body.wfx-preview-phone .site-profile-card,
body.wfx-preview-phone .site-feature-rail article { padding: 14px !important; border-radius: 18px !important; }
body.wfx-preview-phone .site-profile-card h3,
body.wfx-preview-phone .dashboard-site-screen h3,
body.wfx-preview-phone .site-mode-copy h3 { font-size: 1.9rem !important; }
body.wfx-preview-phone .mini-phone-preview { position: relative !important; right: auto !important; bottom: auto !important; width: min(100%, 182px) !important; margin: 14px auto 0 !important; }
body.wfx-preview-phone .mini-phone-screen { min-height: 210px !important; }
body.wfx-preview-phone .mission-band { display: block !important; position: relative !important; }
body.wfx-preview-phone .mission-band::before { inset: 28px 0 !important; border-radius: 28px !important; }

/* v37 preview-device phone refit: mirrors the real phone CSS inside the editor canvas. */
body.wfx-preview-phone {
  background: #dfe5f0 !important;
  overflow-x: hidden !important;
}
body.wfx-preview-phone #main,
body.wfx-preview-phone .site-header {
  box-sizing: border-box !important;
  width: var(--wfx-preview-width, 390px) !important;
  max-width: var(--wfx-preview-width, 390px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-x: hidden !important;
}
body.wfx-preview-phone .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 80 !important;
  min-height: auto !important;
  padding: 10px 12px 11px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px 10px !important;
  border-radius: 0 0 22px 22px !important;
}
body.wfx-preview-phone .brand-mark { flex: 1 1 auto !important; min-width: 0 !important; gap: 8px !important; }
body.wfx-preview-phone .brand-icon { width: 38px !important; height: 38px !important; }
body.wfx-preview-phone .brand-name { font-size: 0.82rem !important; line-height: 0.95 !important; }
body.wfx-preview-phone .brand-sub { font-size: 0.70rem !important; line-height: 0.95 !important; }
body.wfx-preview-phone .header-cta { flex: 0 0 auto !important; padding: 10px 13px !important; font-size: 0.76rem !important; white-space: nowrap !important; }
body.wfx-preview-phone .nav-links { order: 3 !important; flex: 0 0 100% !important; width: 100% !important; display: flex !important; gap: 7px !important; overflow-x: auto !important; overflow-y: hidden !important; padding: 3px 1px 0 !important; scrollbar-width: none; }
body.wfx-preview-phone .nav-links::-webkit-scrollbar { display: none !important; }
body.wfx-preview-phone .nav-links a { flex: 0 0 auto !important; padding: 7px 10px !important; min-height: 28px !important; font-size: 0.70rem !important; line-height: 1 !important; border-radius: 999px !important; border: 1px solid rgba(10,166,255,.22) !important; background: rgba(255,255,255,.72) !important; white-space: nowrap !important; }

body.wfx-preview-phone #main > section,
body.wfx-preview-phone #main > .section,
body.wfx-preview-phone #main > .hero {
  box-sizing: border-box !important;
  width: calc(var(--wfx-preview-width, 390px) - 18px) !important;
  max-width: calc(var(--wfx-preview-width, 390px) - 18px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-x: hidden !important;
}
body.wfx-preview-phone .section,
body.wfx-preview-phone .section.intro,
body.wfx-preview-phone .section.split,
body.wfx-preview-phone .section.split.reverse,
body.wfx-preview-phone .section.site-modes,
body.wfx-preview-phone .section.showcase,
body.wfx-preview-phone .section.mission-band,
body.wfx-preview-phone .section.compatibility,
body.wfx-preview-phone .section.beta-cta { padding: 52px 16px !important; }

body.wfx-preview-phone .hero { display: flex !important; flex-direction: column !important; min-height: auto !important; gap: 18px !important; padding: 24px 16px 26px !important; border-radius: 28px !important; overflow: hidden !important; }
body.wfx-preview-phone .hero-bg { inset: 0 !important; border-radius: 28px !important; }
body.wfx-preview-phone .hero-copy,
body.wfx-preview-phone .hero-video-showcase { position: relative !important; z-index: 2 !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important; padding: 0 !important; margin: 0 !important; transform: none !important; scale: none !important; left: auto !important; top: auto !important; }
body.wfx-preview-phone .hero-copy { order: 1 !important; }
body.wfx-preview-phone .hero-video-showcase { order: 2 !important; }
body.wfx-preview-phone .hero .eyebrow { max-width: 100% !important; margin-bottom: 12px !important; padding: 7px 10px !important; font-size: 0.60rem !important; letter-spacing: 0.085em !important; white-space: normal !important; }
body.wfx-preview-phone .hero-brand { display: block !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important; margin: 0 !important; overflow: visible !important; text-align: left !important; filter: drop-shadow(0 14px 24px rgba(3,32,60,.2)) !important; }
body.wfx-preview-phone .hero-brand-main { display: block !important; width: 100% !important; max-width: 100% !important; font-size: 3.0rem !important; line-height: 0.88 !important; letter-spacing: -0.07em !important; white-space: nowrap !important; transform: none !important; scale: none !important; text-align: left !important; }
body.wfx-preview-phone .hero-brand-sub { display: flex !important; align-items: flex-start !important; justify-content: space-between !important; width: 100% !important; max-width: 100% !important; margin: 4px 0 0 !important; font-size: 2.04rem !important; line-height: 0.9 !important; letter-spacing: 0 !important; white-space: nowrap !important; transform: none !important; scale: none !important; text-align: left !important; }
body.wfx-preview-phone .hero-brand-sub > span { flex: 0 1 auto !important; min-width: 0 !important; }
body.wfx-preview-phone .motto { max-width: 100% !important; margin-top: 16px !important; font-size: 1.14rem !important; line-height: 1.18 !important; letter-spacing: -0.035em !important; }
body.wfx-preview-phone .hero-text,
body.wfx-preview-phone .hero-text-large { max-width: 100% !important; margin-top: 14px !important; font-size: 0.88rem !important; line-height: 1.42 !important; overflow-wrap: break-word !important; }
body.wfx-preview-phone .platform-pills { display: flex !important; flex-wrap: wrap !important; gap: 7px !important; margin-top: 16px !important; overflow: visible !important; }
body.wfx-preview-phone .platform-pills span { min-height: 28px !important; padding: 6px 9px !important; font-size: 0.64rem !important; line-height: 1 !important; }
body.wfx-preview-phone .hero-actions { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 9px !important; margin-top: 18px !important; }
body.wfx-preview-phone .hero-actions .button { width: 100% !important; min-width: 0 !important; padding: 12px 10px !important; font-size: 0.82rem !important; line-height: 1.1 !important; text-align: center !important; }
body.wfx-preview-phone .hero-video-shell { width: 100% !important; max-width: 100% !important; padding: 9px !important; border-radius: 22px !important; overflow: hidden !important; }
body.wfx-preview-phone .video-shell-topbar { min-height: 22px !important; gap: 5px !important; }
body.wfx-preview-phone .video-shell-topbar .dot { width: 8px !important; height: 8px !important; }
body.wfx-preview-phone .video-shell-topbar strong { margin-left: auto !important; font-size: 0.52rem !important; letter-spacing: 0.055em !important; max-width: 72% !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
body.wfx-preview-phone .hero-video-card { width: 100% !important; min-height: 0 !important; height: auto !important; aspect-ratio: 16/10 !important; border-radius: 16px !important; overflow: hidden !important; }
body.wfx-preview-phone .hero-welcome-video { width: 100% !important; height: 100% !important; object-fit: cover !important; }
body.wfx-preview-phone .hero-feature-ribbon { display: grid !important; grid-template-columns: 1fr !important; gap: 7px !important; margin-top: 9px !important; }
body.wfx-preview-phone .hero-feature-ribbon span { min-height: 36px !important; padding: 8px 10px !important; border-radius: 13px !important; font-size: 0.68rem !important; }

body.wfx-preview-phone .section-heading,
body.wfx-preview-phone .split-copy,
body.wfx-preview-phone .site-mode-copy,
body.wfx-preview-phone .glass-card,
body.wfx-preview-phone .module-card,
body.wfx-preview-phone .benefit-grid article,
body.wfx-preview-phone .panel-preview,
body.wfx-preview-phone .phone-preview,
body.wfx-preview-phone .site-mode-card,
body.wfx-preview-phone .desktop-preview,
body.wfx-preview-phone .device-stack { width: 100% !important; max-width: 100% !important; min-width: 0 !important; transform: none !important; scale: none !important; left: auto !important; top: auto !important; }
body.wfx-preview-phone .section-heading { margin-bottom: 20px !important; }
body.wfx-preview-phone .section h2,
body.wfx-preview-phone .split-copy h2,
body.wfx-preview-phone .site-mode-copy h3 { max-width: 100% !important; font-size: 2.36rem !important; line-height: 1.02 !important; letter-spacing: -0.055em !important; overflow-wrap: break-word !important; word-break: normal !important; }
body.wfx-preview-phone .section-heading p,
body.wfx-preview-phone .split-copy p,
body.wfx-preview-phone .site-mode-copy p:not(.eyebrow),
body.wfx-preview-phone .glass-card p,
body.wfx-preview-phone .module-card p,
body.wfx-preview-phone .benefit-grid p,
body.wfx-preview-phone .mission-note { max-width: 100% !important; font-size: 0.90rem !important; line-height: 1.45 !important; overflow-wrap: break-word !important; }
body.wfx-preview-phone .glass-grid,
body.wfx-preview-phone .glass-grid.four,
body.wfx-preview-phone .glass-grid.three,
body.wfx-preview-phone .module-grid,
body.wfx-preview-phone .benefit-grid,
body.wfx-preview-phone .roadmap,
body.wfx-preview-phone .footer-grid,
body.wfx-preview-phone .compact-footer .footer-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; }
body.wfx-preview-phone .glass-card,
body.wfx-preview-phone .module-card,
body.wfx-preview-phone .benefit-grid article { padding: 18px !important; border-radius: 22px !important; }
body.wfx-preview-phone .card-icon,
body.wfx-preview-phone .module-icon,
body.wfx-preview-phone .benefit-grid span { min-width: 46px !important; height: 46px !important; border-radius: 15px !important; }
body.wfx-preview-phone .split,
body.wfx-preview-phone .split.reverse,
body.wfx-preview-phone .site-mode-panel.active,
body.wfx-preview-phone .site-mode-shell,
body.wfx-preview-phone .mode-panels,
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen,
body.wfx-preview-phone .site-modes,
body.wfx-preview-phone .site-mode-card { display: grid !important; grid-template-columns: 1fr !important; gap: 20px !important; }

body.wfx-preview-phone .panel-preview { display: block !important; border-radius: 26px !important; overflow: hidden !important; }
body.wfx-preview-phone .panel-sidebar { display: none !important; }
body.wfx-preview-phone .panel-main { width: 100% !important; padding: 13px !important; }
body.wfx-preview-phone .panel-hero { min-height: 76px !important; border-radius: 20px !important; font-size: 1.72rem !important; line-height: 1.02 !important; text-align: center !important; }
body.wfx-preview-phone .panel-row { display: grid !important; grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 8px !important; }
body.wfx-preview-phone .panel-cards { display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 9px !important; }
body.wfx-preview-phone .panel-row span,
body.wfx-preview-phone .panel-cards span { min-height: 40px !important; padding: 7px !important; font-size: 0.58rem !important; line-height: 1.14 !important; border-radius: 13px !important; overflow-wrap: break-word !important; }
body.wfx-preview-phone .panel-cards span { min-height: 70px !important; }

body.wfx-preview-phone .phone-preview { padding: 8px !important; border-radius: 28px !important; overflow: visible !important; }
body.wfx-preview-phone .phone-screen { box-sizing: border-box !important; width: 306px !important; max-width: 100% !important; height: auto !important; min-height: 0 !important; max-height: none !important; margin: 0 auto !important; padding: 7px !important; border-width: 6px !important; border-radius: 28px !important; overflow: hidden !important; }
body.wfx-preview-phone .phone-extension-banner { min-height: 96px !important; padding: 12px 38px 10px !important; border-radius: 20px !important; }
body.wfx-preview-phone .phone-menu-bubble { width: 30px !important; height: 30px !important; left: 10px !important; top: 10px !important; }
body.wfx-preview-phone .phone-demo-pill { right: 9px !important; top: 10px !important; padding: 6px 9px !important; font-size: 0.54rem !important; }
body.wfx-preview-phone .phone-brand-lockup strong { font-size: 1.9rem !important; line-height: .9 !important; letter-spacing: -0.045em !important; }
body.wfx-preview-phone .phone-brand-lockup span { font-size: .50rem !important; letter-spacing: .095em !important; }
body.wfx-preview-phone .phone-panel { padding: 13px !important; }
body.wfx-preview-phone .phone-panel h3 { font-size: 1.24rem !important; line-height: 1.04 !important; }
body.wfx-preview-phone .phone-media-hero,
body.wfx-preview-phone .phone-support-hero,
body.wfx-preview-phone .phone-command-hero { padding: 13px !important; border-radius: 18px !important; }
body.wfx-preview-phone .phone-trigger-grid,
body.wfx-preview-phone .phone-card-grid.two-col,
body.wfx-preview-phone .phone-media-grid,
body.wfx-preview-phone .phone-quick-grid,
body.wfx-preview-phone .phone-quick-grid-wide { display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 8px !important; }
body.wfx-preview-phone .phone-preview-note { width: 100% !important; max-width: 300px !important; margin: 12px auto 0 !important; padding: 0 !important; text-align: center !important; font-size: 0.70rem !important; line-height: 1.33 !important; }

body.wfx-preview-phone .site-mode-card { padding: 14px !important; border-radius: 26px !important; }
body.wfx-preview-phone .mode-switch { display: flex !important; flex-wrap: wrap !important; gap: 7px !important; padding: 6px !important; border-radius: 18px !important; overflow: visible !important; }
body.wfx-preview-phone .mode-switch button { flex: 1 1 130px !important; padding: 9px 10px !important; font-size: 0.72rem !important; }
body.wfx-preview-phone .site-mode-panel.active { margin-top: 16px !important; }
body.wfx-preview-phone .device-stack { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; min-height: auto !important; }
body.wfx-preview-phone .desktop-preview { width: 100% !important; max-width: 100% !important; padding: 8px !important; border-radius: 22px !important; overflow: hidden !important; }
body.wfx-preview-phone .desktop-topbar { min-height: 24px !important; }
body.wfx-preview-phone .desktop-topbar strong { max-width: 78% !important; font-size: 0.52rem !important; }
body.wfx-preview-phone .desktop-screen { min-height: auto !important; border-radius: 17px !important; overflow: hidden !important; }
body.wfx-preview-phone .viewer-site-screen,
body.wfx-preview-phone .dashboard-site-screen { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; padding: 12px !important; }
body.wfx-preview-phone .site-profile-card,
body.wfx-preview-phone .site-feature-rail article { padding: 13px !important; border-radius: 17px !important; }
body.wfx-preview-phone .site-profile-card h3,
body.wfx-preview-phone .dashboard-site-screen h3,
body.wfx-preview-phone .site-mode-copy h3 { font-size: 1.75rem !important; line-height: 1.02 !important; }
body.wfx-preview-phone .site-mini-actions { display: grid !important; grid-template-columns: 1fr !important; gap: 8px !important; }
body.wfx-preview-phone .site-feature-rail { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; }
body.wfx-preview-phone .dash-mini-sidebar { display: none !important; }
body.wfx-preview-phone .dash-metric-row,
body.wfx-preview-phone .dash-control-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 8px !important; }
body.wfx-preview-phone .mini-phone-preview { position: relative !important; right: auto !important; bottom: auto !important; width: min(100%,175px) !important; margin: 12px auto 0 !important; }
body.wfx-preview-phone .mini-phone-screen { min-height: 205px !important; }
body.wfx-preview-phone .mission-band { display: block !important; position: relative !important; overflow: hidden !important; }
body.wfx-preview-phone .mission-band::before { inset: 24px 0 !important; border-radius: 28px !important; }
