:root {
  --chroma-bg: #0d111a;
  --chroma-surface: #161c2b;
  --chroma-surface-alt: #1e2638;
  --chroma-accent: #de3f5c;
  --chroma-accent-glow: rgba(222, 63, 92, 0.35);
  --chroma-cyan: #38bdf8;
  --chroma-cyan-glow: rgba(56, 189, 248, 0.25);
  --chroma-text-primary: #f0f4fc;
  --chroma-text-secondary: #a2b0cb;
  --chroma-text-muted: #64748b;
  --chroma-border: rgba(255, 255, 255, 0.08);
  --chroma-border-accent: rgba(222, 63, 92, 0.3);
  --radius-main: 18px;
  --radius-sm: 10px;
  --radius-pill: 30px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-sharp: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(222, 63, 92, 0.2);
  --shadow-glass: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --transition-main: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: var(--chroma-bg);
  color: var(--chroma-text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Header & Omni Nav */
.drip {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--chroma-border);
  padding: 16px 24px;
}

.orbit-omni {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.glyph-orbit {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--chroma-text-primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.glyph {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(222, 63, 92, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(222, 63, 92, 0.3);
}

.glyph img {
  width: 24px;
  height: 24px;
  display: block;
}

.brand-name {
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--chroma-accent);
}

.omni {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cylon {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: var(--chroma-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-main);
  min-width: 0;
}

.cylon:hover {
  color: var(--chroma-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.cylon.active {
  color: #ffffff;
  background: var(--chroma-accent);
  box-shadow: 0 0 15px var(--chroma-accent-glow);
}

/* Main Container & Section Spacing */
main {
  display: block;
  width: 100%;
}

/* Section 1: Intro Gallery Hero */
.scope-chroma {
  padding: 70px 24px 90px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.orbit-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.stack-intro {
  flex: 1 1 500px;
  min-width: 0;
}

.glow-prism {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(222, 63, 92, 0.15);
  border: 1px solid var(--chroma-border-accent);
  color: #ff6b84;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 0 12px rgba(222, 63, 92, 0.2);
}

.focal-primary {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  color: var(--chroma-text-primary);
  line-height: 1.22;
  letter-spacing: -1px;
  margin-bottom: 20px;
  white-space: normal;
}

.trace-desc {
  font-size: 1.1rem;
  color: var(--chroma-text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  word-break: break-word;
}

.point-click {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.click-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #de3f5c 0%, #b82b45 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-sharp);
  transition: var(--transition-main);
  min-width: 0;
}

.click-launch:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(222, 63, 92, 0.4);
}

.cylon-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--chroma-surface);
  border: 1px solid var(--chroma-border);
  color: var(--chroma-text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-main);
  min-width: 0;
}

.cylon-alt:hover {
  background: var(--chroma-surface-alt);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.weave-float {
  flex: 1 1 540px;
  min-width: 0;
  position: relative;
}

.nodes-gallery {
  width: 100%;
  height: auto;
  border-radius: var(--radius-main);
  border: 1px solid var(--chroma-border);
  box-shadow: var(--shadow-soft);
  display: block;
  object-fit: cover;
}

.exten-float-top {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--chroma-surface-alt);
  border: 1px solid var(--chroma-border-accent);
  padding: 14px 20px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  animation: floatTop 6s ease-in-out infinite alternate;
}

.exten-float-bottom {
  position: absolute;
  bottom: -25px;
  left: -20px;
  background: var(--chroma-surface);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 14px 20px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  animation: floatBottom 7s ease-in-out infinite alternate;
}

@keyframes floatTop {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}
@keyframes floatBottom {
  0% { transform: translateY(0px); }
  100% { transform: translateY(12px); }
}

.spark-flt {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(222, 63, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trace-flt {
  font-size: 0.88rem;
  color: var(--chroma-text-primary);
  font-weight: 600;
}

.trace-flt span {
  display: block;
  font-size: 0.75rem;
  color: var(--chroma-text-muted);
  font-weight: 400;
}

/* Section 2: Curated Plugins Matrix */
.scope-curated {
  padding: 90px 24px;
  background: linear-gradient(180deg, rgba(13,17,26,0) 0%, rgba(22,28,43,0.6) 50%, rgba(13,17,26,0) 100%);
  border-top: 1px solid var(--chroma-border);
  border-bottom: 1px solid var(--chroma-border);
}

.orbit-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.stack-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.glow-layer {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--chroma-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.focal-sec {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--chroma-text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.trace-sub {
  font-size: 1.05rem;
  color: var(--chroma-text-secondary);
  line-height: 1.7;
}

.orbit-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.exten-unit {
  background: var(--chroma-surface);
  border: 1px solid var(--chroma-border);
  border-radius: var(--radius-main);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-main);
  box-shadow: var(--shadow-glass);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.exten-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--chroma-accent), transparent);
  opacity: 0;
  transition: var(--transition-main);
}

.exten-unit:hover {
  transform: translateY(-6px);
  border-color: rgba(222, 63, 92, 0.4);
  box-shadow: var(--shadow-sharp);
}

.exten-unit:hover::before {
  opacity: 1;
}

.stack-cardtop {
  margin-bottom: 24px;
}

.point-cardhdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.spark-unit {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--chroma-surface-alt);
  border: 1px solid var(--chroma-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glow-cat {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--chroma-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.focal-exten {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chroma-text-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.trace-exten {
  font-size: 0.95rem;
  color: var(--chroma-text-secondary);
  line-height: 1.65;
}

.point-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--chroma-border);
}

.cylon-spec {
  font-size: 0.85rem;
  color: var(--chroma-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.click-sub {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(222, 63, 92, 0.12);
  border: 1px solid var(--chroma-border-accent);
  color: #ff6b84;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-main);
}

.click-sub:hover {
  background: var(--chroma-accent);
  color: #ffffff;
  box-shadow: 0 0 12px var(--chroma-accent-glow);
}

/* Section 3: Article Tutorial Guide */
.scope-tutorial {
  padding: 90px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.weave-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stack-step {
  background: var(--chroma-surface);
  border: 1px solid var(--chroma-border);
  border-radius: var(--radius-main);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition-main);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.stack-step:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.prism-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  font-family: monospace;
}

.spark-step {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.focal-step {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--chroma-text-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.trace-step {
  font-size: 0.96rem;
  color: var(--chroma-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.layer-code {
  background: #090c13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.85rem;
  color: var(--chroma-cyan);
  word-break: break-all;
}

/* Section 4: Mixed Div FAQ Block */
.scope-faq {
  padding: 70px 24px 100px;
  max-width: 1320px;
  margin: 0 auto;
}

.orbit-faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stack-faq {
  background: var(--chroma-surface-alt);
  border: 1px solid var(--chroma-border);
  border-radius: var(--radius-main);
  padding: 28px;
}

.focal-faq {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chroma-text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.focal-faq::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--chroma-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.trace-faq {
  font-size: 0.95rem;
  color: var(--chroma-text-secondary);
  line-height: 1.65;
  padding-left: 36px;
}

/* Footer Sync Area */
.sync {
  background: #080b11;
  border-top: 1px solid var(--chroma-border);
  padding: 70px 24px 40px;
}

.orbit-base {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.stack-base {
  flex: 1 1 300px;
  min-width: 0;
}

.focal-base {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--chroma-text-primary);
  margin-bottom: 16px;
}

.focal-base span {
  color: var(--chroma-accent);
}

.trace-base {
  font-size: 0.95rem;
  color: var(--chroma-text-muted);
  line-height: 1.7;
}

.point-base {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cylon-base {
  color: var(--chroma-text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-main);
  min-width: 0;
}

.cylon-base:hover {
  color: var(--chroma-accent);
  transform: translateX(4px);
}

.layer-copyright {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.88rem;
  color: var(--chroma-text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .exten-float-top, .exten-float-bottom {
    display: none;
  }
}

@media (max-width: 768px) {
  .drip {
    padding: 12px 16px;
  }
  .orbit-omni {
    flex-direction: column;
    align-items: flex-start;
  }
  .omni {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .cylon {
    padding: 6px 14px;
    font-size: 0.88rem;
  }
  .scope-chroma {
    padding: 40px 16px 60px;
  }
  .scope-curated, .scope-tutorial, .scope-faq {
    padding: 50px 16px;
  }
  .orbit-matrix, .weave-steps, .orbit-faq {
    grid-template-columns: 1fr;
  }
  .focal-primary {
    font-size: 1.8rem;
  }
  .trace-faq {
    padding-left: 0;
    margin-top: 8px;
  }
}

.omni-drip {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--chroma-body);
}
.omni-drip,
.omni-drip *,
.omni-drip *::before,
.omni-drip *::after {
    box-sizing: border-box;
}

.omni-drip nav,
.omni-drip div,
.omni-drip section,
.omni-drip article,
.omni-drip aside,
.omni-drip p,
.omni-drip h1,
.omni-drip h2,
.omni-drip h3,
.omni-drip h4,
.omni-drip h5,
.omni-drip h6,
.omni-drip a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.omni-drip p,
.omni-drip h1,
.omni-drip h2,
.omni-drip h3,
.omni-drip h4,
.omni-drip h5,
.omni-drip h6 {
    text-decoration: none;
}

.omni-drip img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.omni-drip {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.omni-drip a.omni-cylon.omni-pulse,
.omni-drip a.omni-cylon {
    --aisite-shell-nav-padding: 8px 18px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.omni-drip a.omni-cylon.omni-pulse,
.omni-drip a.omni-cylon.omni-pulse:hover,
.omni-drip a.omni-cylon.omni-pulse:focus,
.omni-drip a.omni-cylon.omni-pulse:active,
.omni-drip a.omni-cylon.omni-pulse.active,
.omni-drip a.omni-cylon.omni-pulse[aria-current="page"],
.omni-drip a.omni-cylon,
.omni-drip a.omni-cylon:hover,
.omni-drip a.omni-cylon:focus,
.omni-drip a.omni-cylon:active,
.omni-drip a.omni-cylon.active,
.omni-drip a.omni-cylon[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.omni-drip{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 26, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #2a354d;
        }

.omni-drip .omni-orbit-omni{
            max-width: 1320px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.omni-drip .omni-glyph-orbit{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

.omni-drip .omni-glyph-orbit .omni-glyph{
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.omni-drip .omni-glyph-orbit .omni-glyph img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.omni-drip .omni-brand-name{
            font-size: 1.35rem;
            font-weight: 800;
            color: #f0f4fc;
            letter-spacing: -0.5px;
        }

.omni-drip .omni-brand-name span{
            color: #de3f5c;
        }

.omni-drip .omni-omni{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

.omni-drip .omni-cylon{
            color: #a2b0cb;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
        }

.omni-drip .omni-cylon:hover{
            color: #f0f4fc;
            background: rgba(255, 255, 255, 0.05);
        }

.omni-drip .omni-cylon.omni-pulse{
            color: #fff;
            background: #de3f5c;
            box-shadow: 0 4px 15px rgba(222, 63, 92, 0.25);
        }

.omni-drip .omni-cylon.omni-pulse:hover{
            background: #c4324d;
        }

@media (max-width: 768px){.omni-drip{
                position: relative;
            }

.omni-drip .omni-orbit-omni{
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

.omni-drip .omni-omni{
                width: 100%;
                justify-content: flex-start;
                gap: 4px;
            }

.omni-drip .omni-cylon{
                padding: 6px 12px;
                font-size: 0.88rem;
            }}

.omni-drip {
    background: rgb(13, 17, 26);
    background-image: none;
}

.sync-sync-shift {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--chroma-body);
}
.sync-sync-shift,
.sync-sync-shift *,
.sync-sync-shift *::before,
.sync-sync-shift *::after {
    box-sizing: border-box;
}

.sync-sync-shift nav,
.sync-sync-shift div,
.sync-sync-shift section,
.sync-sync-shift article,
.sync-sync-shift aside,
.sync-sync-shift p,
.sync-sync-shift h1,
.sync-sync-shift h2,
.sync-sync-shift h3,
.sync-sync-shift h4,
.sync-sync-shift h5,
.sync-sync-shift h6,
.sync-sync-shift a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.sync-sync-shift p,
.sync-sync-shift h1,
.sync-sync-shift h2,
.sync-sync-shift h3,
.sync-sync-shift h4,
.sync-sync-shift h5,
.sync-sync-shift h6 {
    text-decoration: none;
}

.sync-sync-shift img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.sync-sync-shift {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.sync-sync-shift a,
.sync-sync-shift a:hover,
.sync-sync-shift a:focus,
.sync-sync-shift a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.sync-sync-shift{
            background: #090c13;
            border-top: 1px solid #2a354d;
            padding: 60px 24px 30px;
        }

.sync-sync-shift .sync-orbit-shift{
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.sync-sync-shift .sync-frame-shift-brand{
            max-width: 360px;
            flex: 1;
            min-width: 250px;
        }

.sync-sync-shift .sync-focal-shift-glyph{
            font-size: 1.5rem;
            font-weight: 900;
            color: #f0f4fc;
            margin-bottom: 14px;
        }

.sync-sync-shift .sync-focal-shift-glyph span{
            color: #de3f5c;
        }

.sync-sync-shift .sync-trace-shift{
            font-size: 0.9rem;
            color: #6c7c9c;
            line-height: 1.7;
        }

.sync-sync-shift .sync-point-shift-links{
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

.sync-sync-shift .sync-blend-shift-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.sync-sync-shift .sync-focal-col{
            font-size: 0.95rem;
            font-weight: 700;
            color: #f0f4fc;
            margin-bottom: 6px;
        }

.sync-sync-shift .sync-cylon-shift{
            color: #7a8ba9;
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.35s ease;
        }

.sync-sync-shift .sync-cylon-shift:hover{
            color: #de3f5c;
        }

.sync-sync-shift .sync-base-bottom{
            max-width: 1320px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #53627c;
        }

@media (max-width: 768px){.sync-sync-shift .sync-base-bottom{
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }}