#clearframe-demo{
  --ink: #14292f;
  --ink-soft: #4d6267;
  --green: #153b44;
  --green-mid: #2f6a63;
  --mint: #dcece7;
  --paper: #fbfaf6;
  --sand: #eee5d5;
  --white: #ffffff;
  --line: #d8e1df;
  --focus: #c77d1b;
  --shadow: 0 22px 64px rgba(20, 41, 47, 0.15);
  --shadow-soft: 0 14px 38px rgba(20, 41, 47, 0.09);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-line: rgba(255, 255, 255, 0.62);
  --hero-parallax: 0px;
  --hero-parallax-reverse: 0px;
  --band-parallax: 0px;
  --hero-photo-shift: 0px;
  --radius: 24px;
  --content: 1160px;
}

#clearframe-demo,
#clearframe-demo *{ box-sizing: border-box; }
#clearframe-demo{ scroll-behavior: smooth; }
#clearframe-demo{
  position: relative;
  isolation: isolate;
  display: block;
  width: 100vw;
  max-width: none;
  min-width: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 4%, rgba(126, 184, 170, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(231, 220, 199, 0.40), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

#clearframe-demo::before,
#clearframe-demo::after{
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.72;
}
#clearframe-demo::before{
  width: 24rem;
  height: 24rem;
  top: 42rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(126,184,170,0.20), rgba(126,184,170,0));
}
#clearframe-demo::after{
  width: 28rem;
  height: 28rem;
  top: 96rem;
  right: -14rem;
  background: radial-gradient(circle, rgba(231,220,199,0.34), rgba(231,220,199,0));
}

#clearframe-demo img{ max-width: 100%; display: block; }

/* Defensive reset for inherited list styles. */
#clearframe-demo ul,
#clearframe-demo ol{
  list-style: none !important;
  margin-block: 0;
  padding-inline-start: 0 !important;
}
#clearframe-demo li{ list-style: none !important; }
#clearframe-demo li::marker{ content: "" !important; font-size: 0 !important; }
#clearframe-demo li::before{ content: none !important; }

#clearframe-demo a{ color: inherit; }
#clearframe-demo a:focus-visible,
#clearframe-demo button:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

#clearframe-demo .skip-link{
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
}
#clearframe-demo .skip-link:focus{ top: 0; }

#clearframe-demo .demo-banner{
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
}
#clearframe-demo .demo-banner strong{ color: #d7f3eb; }

#clearframe-demo .site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 10px 30px rgba(20,41,47,0.05);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
#clearframe-demo .header-inner{
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
#clearframe-demo .brand{
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
#clearframe-demo .brand-logo-frame{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}
#clearframe-demo .brand-logo-frame img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.16);
  transform-origin: center;
  filter: drop-shadow(0 7px 12px rgba(20,41,47,0.16));
}
#clearframe-demo .brand:hover .brand-logo-frame{
  transform: translateY(-1px);
}
#clearframe-demo .nav-list{
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#clearframe-demo .nav-list a{
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}
#clearframe-demo .nav-list a:hover{ color: var(--green-mid); }

#clearframe-demo main{ overflow: clip; }
#clearframe-demo .section{
  max-width: var(--content);
  margin: 0 auto;
  padding: 6rem 1.25rem;
}
#clearframe-demo .section-tight{ padding-top: 4rem; padding-bottom: 4rem; }
#clearframe-demo .eyebrow{
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--green-mid);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#clearframe-demo h1,
#clearframe-demo h2,
#clearframe-demo h3{
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
#clearframe-demo h1{ font-size: clamp(2.6rem, 5.2vw, 4.7rem); max-width: 16ch; margin-bottom: 1.4rem; }
#clearframe-demo h2{ font-size: clamp(2rem, 4vw, 3.4rem); max-width: 18ch; margin-bottom: 1.2rem; }
#clearframe-demo h3{ font-size: 1.22rem; margin-bottom: 0.7rem; }
#clearframe-demo p{ margin-top: 0; }
#clearframe-demo .lead{
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

#clearframe-demo .hero{
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding: 4.8rem 1.25rem 5.2rem;
}
#clearframe-demo .hero-stage{
  position: relative;
  height: clamp(620px, 48vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 38px;
  background: #102f37;
  box-shadow: 0 34px 90px rgba(20,41,47,0.24), inset 0 1px 0 rgba(255,255,255,0.35);
}
#clearframe-demo .hero-stage::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,31,37,0.94) 0%, rgba(13,39,45,0.82) 37%, rgba(17,46,52,0.34) 66%, rgba(17,46,52,0.08) 100%),
    linear-gradient(0deg, rgba(7,27,32,0.52) 0%, rgba(7,27,32,0.08) 44%, rgba(7,27,32,0.10) 100%);
  pointer-events: none;
}
#clearframe-demo .hero-stage::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 24rem;
  height: 24rem;
  left: -8rem;
  bottom: -12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(141,208,191,0.28), rgba(141,208,191,0));
  transform: translate3d(0, var(--hero-parallax), 0);
  pointer-events: none;
}
#clearframe-demo .hero-photo-wrap{
  position: absolute;
  inset: -5% 0;
  overflow: hidden;
  transform: translate3d(0, var(--hero-photo-shift), 0);
  will-change: transform;
}
#clearframe-demo .hero-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: 62% 50%;
  animation: cf-ken-burns 12s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  will-change: transform;
}
#clearframe-demo .hero-copy{
  position: relative;
  z-index: 3;
  width: min(780px, 70%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 4.5vw, 4.5rem);
  color: var(--white);
}
#clearframe-demo .hero-copy .eyebrow{ color: #a8ddd1; }
#clearframe-demo .hero-copy h1{ color: var(--white); max-width: 18ch; font-size: clamp(2.8rem, 4.4vw, 4.1rem); }
#clearframe-demo .hero-copy .lead{ color: #e1eeeb; max-width: 54ch; }
#clearframe-demo .hero-copy .microcopy{ color: #c9ddd8; max-width: 58ch; }
#clearframe-demo .hero-copy .button-secondary{
  color: var(--white);
  border-color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#clearframe-demo .hero-copy .button-secondary:hover{ background: rgba(255,255,255,0.16); }
@keyframes cf-ken-burns{
  0%{ transform: scale(1.025) translate3d(-0.8%, 0.4%, 0); }
  100%{ transform: scale(1.13) translate3d(1.4%, -1.2%, 0); }
}
@keyframes cf-stage-in{
  from{ opacity: 0; transform: translate3d(0, 24px, 0) scale(.992); }
  to{ opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes cf-copy-in{
  from{ opacity: 0; transform: translate3d(0, 22px, 0); }
  to{ opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes cf-reveal-up{
  from{ opacity: .42; transform: translate3d(0, 42px, 0); }
  to{ opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes cf-reveal-left{
  from{ opacity: .42; transform: translate3d(-44px, 0, 0); }
  to{ opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes cf-reveal-right{
  from{ opacity: .42; transform: translate3d(44px, 0, 0); }
  to{ opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes cf-orb-drift{
  from{ transform: translate3d(0, -54px, 0) scale(.94); }
  to{ transform: translate3d(0, 68px, 0) scale(1.08); }
}
@keyframes cf-orb-drift-reverse{
  from{ transform: translate3d(0, 58px, 0) scale(1.06); }
  to{ transform: translate3d(0, -62px, 0) scale(.94); }
}
@keyframes cf-hero-parallax-css{
  from{ transform: translate3d(0, -30px, 0); }
  to{ transform: translate3d(0, 42px, 0); }
}
#clearframe-demo .hero-stage{ animation: cf-stage-in 820ms cubic-bezier(.2,.75,.25,1) both; }
#clearframe-demo .hero-copy > *{ animation: cf-copy-in 760ms cubic-bezier(.2,.75,.25,1) both; }
#clearframe-demo .hero-copy > *:nth-child(1){ animation-delay: 120ms; }
#clearframe-demo .hero-copy > *:nth-child(2){ animation-delay: 210ms; }
#clearframe-demo .hero-copy > *:nth-child(3){ animation-delay: 300ms; }
#clearframe-demo .hero-copy > *:nth-child(4){ animation-delay: 390ms; }

#clearframe-demo .cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2rem;
}
#clearframe-demo .button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
#clearframe-demo .button:hover{ transform: translateY(-2px); box-shadow: 0 12px 24px rgba(21,59,68,0.18); }
#clearframe-demo .button-secondary{ background: transparent; color: var(--green); }
#clearframe-demo .button-secondary:hover{ background: var(--mint); }
#clearframe-demo .microcopy{ margin-top: 0.9rem; color: var(--ink-soft); font-size: 0.9rem; }

#clearframe-demo .problem-band{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #102f37 0%, #194b50 52%, #2e6a63 100%);
  color: var(--white);
}
#clearframe-demo .problem-band::before{
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(141,208,191,0.24), rgba(141,208,191,0));
  transform: translate3d(0, var(--band-parallax), 0);
  pointer-events: none;
}
#clearframe-demo .problem-band::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 45%, black);
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}
#clearframe-demo .problem-band .section{ position: relative; z-index: 1; }
#clearframe-demo .problem-band .section{ display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
#clearframe-demo .problem-band h2{ color: var(--white); }
#clearframe-demo .problem-band .lead{ color: #d5e7e3; }
#clearframe-demo .problem-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
#clearframe-demo .problem-list li{
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 16px;
  background: rgba(255,255,255,0.095);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#clearframe-demo .problem-list > li::before{
  content: "" !important;
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #8dd0bf;
}

#clearframe-demo .story-row{
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 2.6rem;
}
#clearframe-demo .story-row.reverse .story-media{ order: 2; }
#clearframe-demo .story-row.reverse .story-copy{ order: 1; }
#clearframe-demo .story-copy h3{
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  max-width: 18ch;
}
#clearframe-demo .story-copy p{ color: var(--ink-soft); max-width: 58ch; }
#clearframe-demo .story-points{
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
#clearframe-demo .story-points li{
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-soft);
}
#clearframe-demo .story-points > li::before{
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-mid);
}
#clearframe-demo .story-media{
  position: relative;
  overflow: hidden;
  padding: 0.6rem;
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.54));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
}
#clearframe-demo .story-media::after{
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.18), transparent 36%, transparent 74%, rgba(255,255,255,0.10));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
}
#clearframe-demo .story-media img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}
#clearframe-demo .story-media.process-photo img{
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}
#clearframe-demo .story-media.result-photo img{ object-position: 50% 48%; }
#clearframe-demo .outcome-band{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(220,236,231,0.42), rgba(247,249,247,0.92));
  border-top: 1px solid rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(216,225,223,0.82);
}
#clearframe-demo .outcome-band::before{
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  left: -12rem;
  bottom: -14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126,184,170,0.22), rgba(126,184,170,0));
  transform: translate3d(0, var(--hero-parallax-reverse), 0);
  pointer-events: none;
}
#clearframe-demo .outcome-band .section{ position: relative; z-index: 1; }

#clearframe-demo .card-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
#clearframe-demo .card{
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--glass-strong), rgba(255,255,255,0.58));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
}
#clearframe-demo .card-number{
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}
#clearframe-demo .card p{ color: var(--ink-soft); margin-bottom: 0; }

#clearframe-demo .process-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
#clearframe-demo .step{
  padding: 1.35rem;
  border-top: 4px solid var(--green-mid);
  background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48));
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
#clearframe-demo .step span{ display: block; margin-bottom: 0.8rem; color: var(--green-mid); font-weight: 900; font-size: 0.9rem; }
#clearframe-demo .step p{ color: var(--ink-soft); margin-bottom: 0; font-size: 0.97rem; }

#clearframe-demo .fit-section{
  background: linear-gradient(180deg, rgba(220,236,231,0.58), rgba(238,244,242,0.86));
  border-top: 1px solid rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(216,225,223,0.82);
}
#clearframe-demo .fit-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
#clearframe-demo .fit-panel{
  padding: 1.7rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
#clearframe-demo .fit-panel.not-fit{ background: linear-gradient(145deg, rgba(250,246,238,0.94), rgba(248,243,234,0.74)); border-color: rgba(232,220,199,0.88); }
#clearframe-demo .check-list{ list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
#clearframe-demo .check-list > li{ position: relative; padding-left: 1.8rem; }
#clearframe-demo .check-list > li::before{ position: absolute; left: 0; top: 0; font-weight: 900; }
#clearframe-demo .fit-panel:not(.not-fit) .check-list > li::before{ content: "✓" !important; color: var(--green-mid); }
#clearframe-demo .not-fit .check-list > li::before{ content: "—" !important; color: #8c6d38; }

#clearframe-demo .contact-panel{
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #102f37 0%, #1d5052 58%, #36766b 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 30px 78px rgba(20,41,47,0.22);
}
#clearframe-demo .contact-panel::before{
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168,221,209,0.26), rgba(168,221,209,0));
  pointer-events: none;
}
#clearframe-demo .contact-panel > *{ position: relative; z-index: 1; }
#clearframe-demo .contact-panel h2{ color: var(--white); }
#clearframe-demo .contact-panel p{ color: #d9eae6; }
#clearframe-demo .contact-details{
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}
#clearframe-demo .contact-details a{ color: var(--white); font-weight: 800; word-break: break-word; }
#clearframe-demo .contact-details .button{ background: var(--white); color: var(--green); border-color: var(--white); width: 100%; margin-bottom: 1rem; }
#clearframe-demo .contact-details p:last-child{ margin-bottom: 0; }

#clearframe-demo .site-footer{
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(251,250,246,0.72), rgba(239,245,242,0.86));
}
#clearframe-demo .site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 20%, rgba(126,184,170,0.14), transparent 24rem);
}
#clearframe-demo .footer-inner{
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding: 3rem 1.25rem 3.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 3rem;
  align-items: end;
}
#clearframe-demo .footer-brand-block{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}
#clearframe-demo .footer-logo-frame{
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
#clearframe-demo .footer-logo-frame img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.16);
  transform-origin: center;
  filter: drop-shadow(0 9px 16px rgba(20,41,47,0.18));
}
#clearframe-demo .footer-brand-name{
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
#clearframe-demo .footer-nav-stack{
  display: grid;
  gap: 1.35rem;
  justify-items: end;
}
#clearframe-demo .footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: flex-end;
}
#clearframe-demo .footer-links a{
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}
#clearframe-demo .footer-links a:hover{ color: var(--green-mid); }
#clearframe-demo .social-group{ display: grid; gap: 0.55rem; justify-items: end; }
#clearframe-demo .social-label{
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#clearframe-demo .social-icons{ display: flex; flex-wrap: wrap; gap: 0.62rem; justify-content: flex-end; }
#clearframe-demo .social-icon{
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(21,59,68,0.15);
  border-radius: 14px;
  color: var(--green);
  background: rgba(255,255,255,0.64);
  box-shadow: 0 8px 20px rgba(20,41,47,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: default;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
#clearframe-demo .social-icon:hover{
  transform: translateY(-3px);
  color: var(--green-mid);
  border-color: rgba(47,106,99,0.34);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 13px 28px rgba(20,41,47,0.13), inset 0 1px 0 rgba(255,255,255,0.96);
}
#clearframe-demo .social-icon svg{ width: 20px; height: 20px; fill: currentColor; }
#clearframe-demo .social-note{ margin: 0; color: var(--ink-soft); font-size: 0.78rem; }
#clearframe-demo .footer-note{ color: var(--ink-soft); font-size: 0.88rem; max-width: 68ch; }

#clearframe-demo .utility-main{ max-width: 820px; margin: 0 auto; padding: 5rem 1.25rem; }
#clearframe-demo .utility-main h1{ font-size: clamp(2.3rem, 5vw, 4rem); max-width: none; }
#clearframe-demo .utility-main h2{ font-size: 1.65rem; margin-top: 2.6rem; max-width: none; }
#clearframe-demo .utility-main p,
#clearframe-demo .utility-main li{ color: var(--ink-soft); }
#clearframe-demo .notice-box{ padding: 1.2rem 1.35rem; border-left: 5px solid var(--green-mid); background: var(--mint); border-radius: 0 14px 14px 0; }


#clearframe-demo.motion-ready .reveal{
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 760ms cubic-bezier(.2,.75,.25,1), transform 760ms cubic-bezier(.2,.75,.25,1);
  transition-delay: var(--reveal-delay, 0ms);
}
#clearframe-demo.motion-ready .reveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* CSS-native scroll motion: remains active when an embed environment blocks scripts. */
@supports (animation-timeline: view()){
  #clearframe-demo .hero-photo-wrap{
    animation: cf-hero-parallax-css linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  #clearframe-demo .problem-band::before{
    animation: cf-orb-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  #clearframe-demo .outcome-band::before{
    animation: cf-orb-drift-reverse linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  #clearframe-demo .problem-band .section > *,
  #clearframe-demo .card,
  #clearframe-demo .step,
  #clearframe-demo .fit-panel,
  #clearframe-demo .contact-panel > *{
    animation: cf-reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
  #clearframe-demo .story-row:not(.reverse) .story-media,
  #clearframe-demo .story-row.reverse .story-copy{
    animation: cf-reveal-left linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
  #clearframe-demo .story-row:not(.reverse) .story-copy,
  #clearframe-demo .story-row.reverse .story-media{
    animation: cf-reveal-right linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}
#clearframe-demo .card,
#clearframe-demo .step,
#clearframe-demo .fit-panel{
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
#clearframe-demo .card:hover,
#clearframe-demo .step:hover,
#clearframe-demo .fit-panel:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(20,41,47,0.13);
  border-color: rgba(126,184,170,0.56);
}

@media (max-width: 900px){
  #clearframe-demo .hero{ padding-top: 3.8rem; }
  #clearframe-demo .hero-copy{ width: min(760px, 82%); }
  #clearframe-demo .problem-band .section,
  #clearframe-demo .contact-panel,
  #clearframe-demo .story-row{ grid-template-columns: 1fr; gap: 2.2rem; }
  #clearframe-demo .story-row.reverse .story-media,
  #clearframe-demo .story-row.reverse .story-copy{ order: initial; }
  #clearframe-demo .story-media{ max-width: 760px; }
  #clearframe-demo .card-grid{ grid-template-columns: 1fr 1fr; }
  #clearframe-demo .process-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px){
  #clearframe-demo{ font-size: 16px; }
  #clearframe-demo .header-inner{ align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  #clearframe-demo .nav-list{ gap: 0.85rem 1rem; }
  #clearframe-demo .section{ padding-top: 4.5rem; padding-bottom: 4.5rem; }
  #clearframe-demo .hero{ padding-top: 2.8rem; padding-bottom: 3.8rem; }
  #clearframe-demo .hero-stage{ height: 760px; border-radius: 28px; }
  #clearframe-demo .hero-stage::before{
    background: linear-gradient(0deg, rgba(8,29,34,0.95) 0%, rgba(11,35,41,0.88) 50%, rgba(13,39,45,0.18) 100%);
  }
  #clearframe-demo .hero-photo{ object-position: 67% center; }
  #clearframe-demo .hero-copy{
    width: 100%;
    height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.4rem;
  }
  #clearframe-demo .hero-copy h1{ font-size: clamp(2.5rem, 12vw, 3.15rem); max-width: 13ch; }
  #clearframe-demo .card-grid,
#clearframe-demo .process-grid,
#clearframe-demo .fit-grid{ grid-template-columns: 1fr; }
  #clearframe-demo .hero-stage{ animation: cf-stage-in 820ms cubic-bezier(.2,.75,.25,1) both; }
#clearframe-demo .hero-copy > *{ animation: cf-copy-in 760ms cubic-bezier(.2,.75,.25,1) both; }
#clearframe-demo .hero-copy > *:nth-child(1){ animation-delay: 120ms; }
#clearframe-demo .hero-copy > *:nth-child(2){ animation-delay: 210ms; }
#clearframe-demo .hero-copy > *:nth-child(3){ animation-delay: 300ms; }
#clearframe-demo .hero-copy > *:nth-child(4){ animation-delay: 390ms; }

#clearframe-demo .cta-row{ align-items: stretch; }
  #clearframe-demo .button{ width: 100%; }
  #clearframe-demo .footer-inner{ grid-template-columns: 1fr; gap: 2rem; }
  #clearframe-demo .footer-nav-stack,
  #clearframe-demo .social-group{ justify-items: start; }
  #clearframe-demo .footer-links,
  #clearframe-demo .social-icons{ justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce){
  #clearframe-demo{ scroll-behavior: auto; }
  #clearframe-demo,
#clearframe-demo *,
#clearframe-demo *::before,
#clearframe-demo *::after{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  #clearframe-demo.motion-ready .reveal{ opacity: 1 !important; transform: none !important; }
  #clearframe-demo .hero-photo,
  #clearframe-demo .hero-photo-wrap{ transform: none !important; }
}
