:root {
  --sync-bg: #f4f6fa;
  --sync-surface: #ffffff;
  --sync-surface-soft: #fafbfe;
  --sync-ink: #172033;
  --sync-muted: #697386;
  --sync-line: #dfe4ec;
  --sync-primary: #5b5ce2;
  --sync-primary-2: #7a5cff;
  --sync-navy: #111827;
  --sync-navy-2: #171f31;
  --sync-success: #17865b;
  --sync-warning: #9a6500;
  --sync-danger: #c23a4b;
  --sync-shell: 1180px;
  --sync-shadow: 0 18px 50px rgba(31, 42, 68, 0.08);
  --sync-shadow-soft: 0 10px 30px rgba(31, 42, 68, 0.06);
  --sync-radius-sm: 12px;
  --sync-radius: 18px;
  --sync-radius-lg: 28px;
  --sync-font: Inter, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.sync-creator-desk {
  margin: 0;
  background: var(--sync-bg);
  color: var(--sync-ink);
  font-family: var(--sync-font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.sync-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(91, 92, 226, 0.24);
}

.screen-reader-text,
.sync-skip-link:not(:focus) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sync-skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--sync-primary);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(91, 92, 226, 0.52);
  outline-offset: 3px;
}

.sync-shell {
  width: min(calc(100% - 48px), var(--sync-shell));
  margin-inline: auto;
}

.sync-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(244, 246, 250, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.sync-site-header.is-scrolled {
  border-color: var(--sync-line);
  box-shadow: 0 8px 28px rgba(31, 42, 68, 0.06);
}

.sync-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 48px), var(--sync-shell));
  min-height: 74px;
  margin-inline: auto;
}

.sync-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--sync-ink);
  text-decoration: none;
  white-space: nowrap;
}

.sync-brand-name {
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.075em;
}

.sync-brand-note {
  color: var(--sync-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sync-brand-logo .custom-logo-link,
.sync-brand-logo img {
  display: block;
}

.sync-brand-logo img {
  width: auto;
  max-height: 38px;
}

.sync-primary-nav {
  justify-self: end;
}

.sync-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.sync-nav-list a {
  position: relative;
  display: inline-flex;
  padding: 9px 0;
  color: #3f495c;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.sync-nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sync-primary), var(--sync-primary-2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.18s ease;
}

.sync-nav-list a:hover::after,
.sync-nav-list .current-menu-item > a::after,
.sync-nav-list .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sync-header-cta,
.sync-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--sync-line);
  border-radius: 11px;
  background: var(--sync-surface);
  color: var(--sync-ink);
  font-size: 14px;
  font-weight: 880;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.sync-header-cta,
.sync-button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--sync-primary), var(--sync-primary-2));
  color: #fff;
  box-shadow: 0 9px 22px rgba(91, 92, 226, 0.22);
}

.sync-button-large {
  min-height: 54px;
  padding: 14px 23px;
  border-radius: 13px;
  font-size: 16px;
}

.sync-button:hover,
.sync-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(31, 42, 68, 0.15);
}

.sync-button-primary:hover,
.sync-header-cta:hover {
  box-shadow: 0 14px 30px rgba(91, 92, 226, 0.3);
  filter: brightness(1.04);
}

.sync-button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.sync-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--sync-line);
  border-radius: 11px;
  background: var(--sync-surface);
}

.sync-menu-button > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--sync-ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.sync-menu-button[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sync-menu-button[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.sync-menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sync-main {
  overflow: hidden;
}

.sync-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
  min-height: 590px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: var(--sync-radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 104, 255, 0.24), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(91, 92, 226, 0.22), transparent 35%),
    linear-gradient(135deg, #0d1423 0%, #2d255f 64%, #5b5ce2 115%);
  color: #fff;
  box-shadow: var(--sync-shadow);
}

.sync-home-hero::before,
.sync-page-hero::before,
.sync-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
}

.sync-hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(42px, 6vw, 76px);
}

.sync-eyebrow {
  display: block;
  color: var(--sync-primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sync-eyebrow-light {
  color: #aeb0ff;
}

.sync-hero-main h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(43px, 6.2vw, 76px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.sync-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #d9dced;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 580;
  line-height: 1.85;
}

.sync-hero-actions,
.sync-page-hero-actions,
.sync-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sync-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.sync-hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  color: #e4e6f6;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.sync-hero-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sync-live-card {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 36px 36px 36px 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(14px);
}

.sync-live-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sync-live-head small,
.sync-live-head strong {
  display: block;
}

.sync-live-head small {
  color: #bfc3d9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.sync-live-head strong {
  margin-top: 3px;
  font-size: 15px;
}

.sync-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #aeb8cb;
  box-shadow: 0 0 0 6px rgba(174, 184, 203, 0.12);
}

.sync-live-dot.open {
  background: #48d597;
  box-shadow: 0 0 0 6px rgba(72, 213, 151, 0.14);
}

.sync-live-dot.consult {
  background: #f4bd4f;
  box-shadow: 0 0 0 6px rgba(244, 189, 79, 0.14);
}

.sync-live-card dl {
  margin: 16px 0;
}

.sync-live-card dl > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sync-live-card dt {
  color: #bfc3d9;
  font-size: 12px;
  font-weight: 700;
}

.sync-live-card dd {
  margin: 0;
  font-size: 15px;
  font-weight: 850;
}

.sync-live-card > p {
  margin: 16px 0 0;
  color: #bfc3d9;
  font-size: 12px;
  line-height: 1.75;
}

.sync-trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -18px;
  overflow: hidden;
  border: 1px solid var(--sync-line);
  border-radius: 17px;
  background: var(--sync-line);
  box-shadow: var(--sync-shadow-soft);
}

.sync-trust-strip article {
  position: relative;
  min-height: 130px;
  padding: 24px 24px 22px 68px;
  background: var(--sync-surface);
}

.sync-trust-strip article > span {
  position: absolute;
  top: 26px;
  left: 23px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #efefff;
  color: var(--sync-primary);
  font-size: 10px;
  font-weight: 950;
}

.sync-trust-strip strong {
  display: block;
  font-size: 15px;
}

.sync-trust-strip p {
  margin: 7px 0 0;
  color: var(--sync-muted);
  font-size: 12px;
  line-height: 1.65;
}

.sync-section {
  padding-block: clamp(74px, 9vw, 118px);
}

.sync-section-tint {
  background:
    radial-gradient(circle at 10% 0%, rgba(91, 92, 226, 0.08), transparent 34%),
    #eceff6;
}

.sync-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 38px;
}

.sync-section-heading h2 {
  max-width: 780px;
  margin: 9px 0 0;
  font-size: clamp(31px, 4.3vw, 52px);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.sync-section-heading > p {
  margin: 0;
  color: var(--sync-muted);
  font-size: 15px;
  line-height: 1.85;
}

.sync-section-heading-center {
  display: block;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sync-section-heading-center > p {
  max-width: 680px;
  margin: 17px auto 0;
}

.sync-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sync-service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(31, 42, 68, 0.035);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sync-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sync-shadow-soft);
}

.sync-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 92, 226, 0.13), transparent 68%);
  transform: translate(35%, -38%);
  pointer-events: none;
}

.sync-service-featured {
  border-color: #bdbefd;
  background: linear-gradient(145deg, #fff, #f4f4ff);
}

.sync-service-index {
  color: var(--sync-primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.sync-service-card h3 {
  margin: 24px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.sync-service-card p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--sync-muted);
  font-size: 14px;
}

.sync-service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--sync-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.sync-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid var(--sync-line);
}

.sync-price-line span {
  color: var(--sync-muted);
  font-size: 12px;
  font-weight: 760;
}

.sync-price-line strong {
  font-size: 20px;
}

.sync-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.sync-plan-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
  box-shadow: 0 8px 28px rgba(31, 42, 68, 0.035);
}

.sync-plan-card > span {
  color: var(--sync-primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.sync-plan-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

.sync-plan-card > strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(37px, 5vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.sync-plan-card > strong small {
  margin-left: 4px;
  font-size: 14px;
  letter-spacing: 0;
}

.sync-plan-card p {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--sync-line);
  font-size: 14px;
  font-weight: 800;
}

.sync-plan-card p small {
  color: var(--sync-muted);
  font-weight: 600;
}

.sync-plan-recommended {
  border: 2px solid var(--sync-primary);
  background: linear-gradient(155deg, #fff, #f3f3ff);
  transform: translateY(-9px);
  box-shadow: 0 18px 40px rgba(91, 92, 226, 0.13);
}

.sync-plan-recommended::before {
  content: "POPULAR";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--sync-primary);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.sync-plan-note {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--sync-muted);
  font-size: 12px;
  text-align: center;
}

.sync-works-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
}

.sync-works-filters button {
  min-height: 40px;
  padding: 8px 17px;
  border: 1px solid var(--sync-line);
  border-radius: 999px;
  background: var(--sync-surface);
  color: var(--sync-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.sync-works-filters button:hover,
.sync-works-filters button.is-active {
  border-color: var(--sync-primary);
  background: var(--sync-primary);
  color: #fff;
}

.sync-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sync-work-card {
  overflow: hidden;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
  color: var(--sync-ink);
  box-shadow: var(--sync-shadow-soft);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sync-work-card:hover {
  border-color: #bdbefd;
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.13);
  transform: translateY(-4px);
}

.sync-work-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #090e18;
  aspect-ratio: 16 / 9;
}

.sync-work-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.sync-work-card:hover .sync-work-media img {
  opacity: 0.84;
  transform: scale(1.025);
}

.sync-work-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.7);
  opacity: 0;
  transform: translate(-50%, -46%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(8px);
}

.sync-work-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  content: "";
}

.sync-work-card:hover .sync-work-play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.sync-work-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sync-work-tags > span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.84);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.sync-work-body {
  display: grid;
  gap: 12px;
  padding: 17px 18px 19px;
}

.sync-work-body strong {
  display: -webkit-box;
  min-height: 3em;
  overflow: hidden;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sync-work-body time {
  color: var(--sync-muted);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.08em;
}

.sync-works-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.sync-works-more.sync-button-ghost {
  border-color: var(--sync-line);
  background: var(--sync-surface);
  color: var(--sync-ink);
  box-shadow: var(--sync-shadow-soft);
}

.sync-work-card[hidden],
.sync-works-more[hidden] {
  display: none;
}

.sync-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #29334a;
  border-radius: 22px;
  background: #090e18;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.2);
  aspect-ratio: 16 / 9;
}

.sync-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1020px) {
  .sync-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .sync-works-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .sync-work-play {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.sync-flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 7vw, 90px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--sync-radius-lg);
  background:
    radial-gradient(circle at 6% 12%, rgba(123, 92, 255, 0.2), transparent 33%),
    linear-gradient(140deg, #111827, #28215a);
  color: #fff;
  box-shadow: var(--sync-shadow);
}

.sync-flow-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4.4vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.sync-flow-intro p {
  margin: 20px 0 0;
  color: #c7cada;
}

.sync-flow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sync-flow-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sync-flow-list li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #b9baff;
  font-size: 11px;
  font-weight: 950;
}

.sync-flow-list strong {
  display: block;
  font-size: 15px;
}

.sync-flow-list p {
  margin: 3px 0 0;
  color: #bfc3d9;
  font-size: 12px;
}

.sync-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 82px;
  padding: clamp(38px, 5.5vw, 64px);
  overflow: hidden;
  border-radius: var(--sync-radius-lg);
  background: linear-gradient(135deg, #111827 0%, #2d255f 65%, #5b5ce2 125%);
  color: #fff;
  box-shadow: var(--sync-shadow);
}

.sync-final-cta > * {
  position: relative;
  z-index: 1;
}

.sync-final-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(31px, 4.4vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.sync-final-cta p {
  max-width: 670px;
  margin: 16px 0 0;
  color: #ced1e2;
}

.sync-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.sync-page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(126, 104, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #0d1423 0%, #2d255f 68%, #5b5ce2 125%);
  color: #fff;
}

.sync-page-hero > .sync-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding-block: 72px;
  flex-direction: column;
}

.sync-page-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 950;
  letter-spacing: -0.052em;
  line-height: 1.15;
}

.sync-page-hero p {
  max-width: 760px;
  margin: 21px 0 0;
  color: #d6d9e9;
  font-size: clamp(15px, 1.7vw, 18px);
}

.sync-page-content {
  padding-block: clamp(64px, 8vw, 104px);
}

.sync-page-content > *:first-child {
  margin-top: 0;
}

.sync-page-content > h2,
.sync-page-content > .wp-block-heading {
  margin-top: 72px;
  font-size: clamp(27px, 3.6vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.sync-page-content > h3 {
  margin-top: 42px;
  font-size: 22px;
}

.sync-page-content p,
.sync-page-content li {
  overflow-wrap: anywhere;
}

.sync-page-content a:not(.sync-button) {
  color: var(--sync-primary);
  font-weight: 760;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.sync-page-content table {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--sync-line);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--sync-surface);
  box-shadow: 0 7px 24px rgba(31, 42, 68, 0.035);
}

.sync-page-content th,
.sync-page-content td {
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid var(--sync-line);
  text-align: left;
  vertical-align: top;
}

.sync-page-content th {
  background: #f0f2f7;
  color: var(--sync-muted);
  font-size: 12px;
}

.sync-page-content tr:last-child td {
  border-bottom: 0;
}

.sync-content-section {
  margin-block: 72px;
}

.sync-content-section[id],
.sync-content-section h2[id] {
  scroll-margin-top: 104px;
}

.sync-content-section:first-child {
  margin-top: 0;
}

.sync-content-section > header {
  max-width: 780px;
  margin-bottom: 28px;
}

.sync-content-section > header h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 3.8vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.sync-content-section > header p {
  margin: 14px 0 0;
  color: var(--sync-muted);
}

.sync-section-kicker,
.sync-card-label {
  margin: 0 0 8px;
  color: var(--sync-primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sync-content-section > h2,
.sync-important > h2 {
  max-width: 820px;
  margin: 8px 0 0;
  font-size: clamp(27px, 3.8vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.sync-section-lead {
  max-width: 820px;
  margin: 14px 0 30px;
  color: var(--sync-muted);
  font-size: 17px;
}

.sync-content-section > h2 + .sync-content-grid,
.sync-content-section > h2 + .sync-pricing-grid,
.sync-content-section > h2 + .sync-feature-grid,
.sync-content-section > h2 + .sync-check-list,
.sync-content-section > h2 + .sync-process-list,
.sync-content-section > .sync-section-lead + .sync-content-grid,
.sync-content-section > .sync-section-lead + .sync-pricing-grid,
.sync-content-section > .sync-section-lead + .sync-feature-grid {
  margin-top: 28px;
}

.sync-content-grid,
.sync-pricing-grid,
.sync-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sync-content-card,
.sync-price-card,
.sync-note-card {
  padding: 25px;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
  box-shadow: 0 7px 26px rgba(31, 42, 68, 0.035);
}

.sync-content-card h3,
.sync-price-card h3,
.sync-note-card h2,
.sync-note-card h3 {
  margin: 0;
  font-size: 19px;
}

.sync-content-card p,
.sync-price-card p,
.sync-note-card p {
  margin: 10px 0 0;
  color: var(--sync-muted);
  font-size: 14px;
}

.sync-content-card ul,
.sync-note-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.sync-equipment-grid li {
  margin-block: 6px;
  overflow-wrap: anywhere;
}

.sync-note-card > strong {
  display: block;
  color: var(--sync-ink);
  font-size: 17px;
}

.sync-price-card > span {
  color: var(--sync-primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.sync-price-card > strong {
  display: block;
  margin-top: 13px;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.sync-price-card > strong small {
  font-size: 13px;
  letter-spacing: 0;
}

.sync-price-card .sync-card-label {
  color: var(--sync-primary);
}

.sync-price-card .sync-price {
  margin-top: 13px;
  color: var(--sync-ink);
}

.sync-price-card .sync-price strong {
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.sync-fine-print {
  margin: 18px 0 0;
  color: var(--sync-muted);
  font-size: 12px;
}

.sync-price-card.is-featured {
  border-color: var(--sync-primary);
  background: linear-gradient(145deg, #fff, #f4f4ff);
  box-shadow: 0 16px 36px rgba(91, 92, 226, 0.11);
}

.sync-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.sync-check-list li {
  position: relative;
  padding: 14px 15px 14px 45px;
  border: 1px solid var(--sync-line);
  border-radius: 12px;
  background: var(--sync-surface);
  font-size: 14px;
  font-weight: 720;
}

.sync-check-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: #e4f7ef;
  color: var(--sync-success);
  font-size: 11px;
  font-weight: 950;
}

.sync-process-list {
  display: grid;
  padding: 0;
  margin: 26px 0 0;
  counter-reset: sync-step;
  list-style: none;
}

.sync-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sync-line);
  counter-increment: sync-step;
}

.sync-process-list li::before {
  content: counter(sync-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sync-primary), var(--sync-primary-2));
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.sync-process-list strong {
  display: block;
  grid-column: 2;
  font-size: 17px;
}

.sync-process-list p,
.sync-process-list span {
  display: block;
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--sync-muted);
  font-size: 14px;
}

.sync-important {
  padding: 23px;
  border: 1px solid #d8c474;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf0, #fff);
}

.sync-important > strong {
  display: block;
  color: #6c4b00;
  font-size: 15px;
}

.sync-important p,
.sync-important ul {
  margin-bottom: 0;
}

.sync-important .sync-section-kicker {
  color: #7a5300;
}

.sync-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 72px 0 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 22px;
  background: linear-gradient(135deg, #111827, #2d255f);
  color: #fff;
  box-shadow: var(--sync-shadow);
}

.sync-inline-cta h2 {
  margin: 7px 0 0;
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: -0.035em;
}

.sync-inline-cta p {
  margin: 10px 0 0;
  color: #c6cada;
}

.sync-contact-routing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 50px;
}

.sync-contact-routing > article {
  padding: 26px;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
}

.sync-contact-routing h2,
.sync-contact-routing h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.sync-contact-routing p {
  color: var(--sync-muted);
}

.sync-contact-routing .sync-button {
  margin-top: 6px;
}

.wpcf7 {
  max-width: 820px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--sync-line);
  border-radius: 20px;
  background: var(--sync-surface);
  box-shadow: var(--sync-shadow-soft);
}

.wpcf7 form {
  display: grid;
  gap: 18px;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
}

.wpcf7 input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfd6e2;
  border-radius: 11px;
  background: #fff;
  color: var(--sync-ink);
}

.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--sync-primary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(91, 92, 226, 0.12);
}

.wpcf7 input[type="submit"] {
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sync-primary), var(--sync-primary-2));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: var(--sync-danger);
  font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
}

.arconix-faq-wrap,
.arconix-faq-wrap .arconix-faq-title,
.arconix-faq-wrap .arconix-faq-content {
  font-family: var(--sync-font);
}

.arconix-faq-wrap {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--sync-line);
  border-radius: 13px;
  background: var(--sync-surface);
}

.arconix-faq-wrap .arconix-faq-title {
  padding: 17px 18px;
  margin: 0;
  font-weight: 850;
}

.arconix-faq-wrap .arconix-faq-content {
  padding: 0 18px 18px;
  color: var(--sync-muted);
}

.sync-page-rule .sync-page-content,
.sync-page-privacy-policy-2 .sync-page-content,
.sync-page-csh_gl .sync-page-content {
  max-width: 900px;
}

.sync-page-rule .sync-page-content h2,
.sync-page-privacy-policy-2 .sync-page-content h2,
.sync-page-csh_gl .sync-page-content h2 {
  padding-top: 30px;
  border-top: 1px solid var(--sync-line);
  font-size: 25px;
}

.sync-index,
.sync-article,
.sync-error-page {
  padding-block: 80px;
}

.sync-index-heading h1,
.sync-article h1,
.sync-error-page h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.sync-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.sync-post-card {
  padding: 24px;
  border: 1px solid var(--sync-line);
  border-radius: var(--sync-radius);
  background: var(--sync-surface);
}

.sync-post-card > span {
  color: var(--sync-muted);
  font-size: 11px;
}

.sync-post-card h2 {
  margin: 10px 0 0;
  font-size: 20px;
}

.sync-post-card h2 a {
  text-decoration: none;
}

.sync-article {
  max-width: 900px;
}

.sync-article-body {
  margin-top: 40px;
}

.sync-site-footer {
  background: #0c111d;
  color: #fff;
}

.sync-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
  gap: 80px;
  width: min(calc(100% - 48px), var(--sync-shell));
  padding-block: 70px;
  margin-inline: auto;
}

.sync-footer-brand > strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.sync-footer-brand p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #9ca8bc;
  font-size: 13px;
}

.sync-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.sync-footer-links > div {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.sync-footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
}

.sync-footer-links a {
  color: #9ca8bc;
  font-size: 12px;
  text-decoration: none;
}

.sync-footer-links a:hover {
  color: #fff;
}

.sync-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 48px), var(--sync-shell));
  padding-block: 22px;
  border-top: 1px solid #273145;
  margin-inline: auto;
  color: #728097;
  font-size: 10px;
}

@media (max-width: 1020px) {
  .sync-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .sync-menu-button {
    display: block;
  }

  .sync-primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    max-height: calc(100vh - 74px);
    padding: 18px 24px 28px;
    overflow: auto;
    border-top: 1px solid var(--sync-line);
    border-bottom: 1px solid var(--sync-line);
    background: rgba(244, 246, 250, 0.98);
    box-shadow: 0 18px 42px rgba(31, 42, 68, 0.12);
    backdrop-filter: blur(18px);
  }

  .sync-primary-nav.is-open {
    display: block;
  }

  .sync-nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .sync-nav-list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--sync-line);
    font-size: 14px;
  }

  .sync-nav-list a::after {
    display: none;
  }

  .sync-home-hero {
    grid-template-columns: 1fr;
  }

  .sync-live-card {
    margin: 0 34px 34px;
  }

  .sync-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sync-flow-panel {
    grid-template-columns: 1fr;
  }

  .sync-final-cta {
    grid-template-columns: 1fr;
  }

  .sync-final-actions {
    justify-content: flex-start;
  }

  .sync-footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .sync-shell,
  .sync-header-inner,
  .sync-footer-main,
  .sync-footer-bottom {
    width: min(calc(100% - 28px), var(--sync-shell));
  }

  .sync-header-inner {
    min-height: 66px;
  }

  .sync-primary-nav {
    inset: 66px 0 auto;
    max-height: calc(100vh - 66px);
    padding-inline: 14px;
  }

  .sync-brand-note,
  .sync-header-cta {
    display: none;
  }

  .sync-brand-name {
    font-size: 14px;
  }

  .sync-home-hero {
    min-height: 0;
    margin-top: 14px;
    border-radius: 21px;
  }

  .sync-hero-main {
    padding: 35px 24px 28px;
  }

  .sync-hero-main h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .sync-hero-lead {
    font-size: 15px;
  }

  .sync-hero-actions,
  .sync-page-hero-actions,
  .sync-final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sync-button,
  .sync-button-large {
    width: 100%;
  }

  .sync-live-card {
    margin: 0 14px 14px;
    padding: 22px;
  }

  .sync-trust-strip {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .sync-trust-strip article {
    min-height: 116px;
  }

  .sync-section {
    padding-block: 70px;
  }

  .sync-section-heading {
    margin-bottom: 28px;
  }

  .sync-section-heading h2 {
    font-size: 34px;
  }

  .sync-service-grid,
  .sync-plan-grid,
  .sync-content-grid,
  .sync-pricing-grid,
  .sync-feature-grid,
  .sync-post-grid {
    grid-template-columns: 1fr;
  }

  .sync-service-card {
    min-height: 270px;
    padding: 25px;
  }

  .sync-plan-recommended {
    transform: none;
  }

  .sync-flow-panel {
    padding: 30px 23px;
    border-radius: 21px;
  }

  .sync-final-cta {
    margin-bottom: 52px;
    padding: 31px 24px;
    border-radius: 21px;
  }

  .sync-page-hero,
  .sync-page-hero > .sync-shell {
    min-height: 390px;
  }

  .sync-page-hero > .sync-shell {
    padding-block: 56px;
  }

  .sync-page-hero h1 {
    font-size: 42px;
  }

  .sync-check-list,
  .sync-contact-routing {
    grid-template-columns: 1fr;
  }

  .sync-inline-cta {
    grid-template-columns: 1fr;
  }

  .sync-page-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .sync-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .sync-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .sync-footer-links {
    grid-template-columns: 1fr;
  }

  .sync-live-card dl > div {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --sync-bg: #0c111d;
    --sync-surface: #151d2d;
    --sync-surface-soft: #111827;
    --sync-ink: #eef2fb;
    --sync-muted: #9ca8bc;
    --sync-line: #2c374b;
    --sync-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    --sync-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  body.sync-creator-desk {
    color-scheme: dark;
  }

  .sync-site-header,
  .sync-primary-nav {
    background: rgba(12, 17, 29, 0.94);
  }

  .sync-brand,
  .sync-nav-list a {
    color: var(--sync-ink);
  }

  .sync-button:not(.sync-button-primary):not(.sync-button-ghost),
  .sync-menu-button {
    background: #172033;
    color: var(--sync-ink);
  }

  .sync-section-tint {
    background: #101726;
  }

  .sync-service-featured,
  .sync-plan-recommended,
  .sync-price-card.is-featured {
    background: linear-gradient(145deg, #151d2d, #1c1c3d);
  }

  .sync-page-content th {
    background: #101827;
  }

  .sync-check-list li::before {
    background: #123b2c;
    color: #a6e6ca;
  }

  .sync-important {
    border-color: #705d27;
    background: linear-gradient(145deg, #342a11, #1d1a13);
  }

  .sync-important > strong {
    color: #f0d482;
  }

  .wpcf7 input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
  .wpcf7 select,
  .wpcf7 textarea {
    border-color: #39465c;
    background: #0f1725;
    color: var(--sync-ink);
  }
}
