@font-face {
  font-family: Inter;
  src: url("/assets/inter.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Sora;
  src: url("/assets/sora.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #101419;
  --blue: #2457ff;
  --cyan: #15d4e8;
  --mist: #f4f6fa;
  --muted: #5d6675;
  --line: #dce1e9;
  --wrap: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
  letter-spacing: -0.055em;
  line-height: 1.12;
  font-weight: 600;
}
h2 {
  font-size: clamp(36px, 4.1vw, 57px);
}
h3 {
  font-size: 24px;
}
em {
  font-style: normal;
  color: var(--blue);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(var(--wrap), calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.11em;
  font-weight: 650;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid transparent;
  padding: 19px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  min-height: 58px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-3px);
}
.primary {
  background: var(--blue);
  color: #fff;
}
.primary:hover {
  background: #1544ec;
}
.white {
  background: #fff;
  color: var(--blue);
}
.outline {
  border-color: #b6bfce;
  background: transparent;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px;
  background: #fff;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9edf3;
  z-index: 30;
  backdrop-filter: blur(16px);
}
.nav-wrap {
  max-width: 1440px;
  margin: auto;
  min-height: 90px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  margin-right: auto;
  flex-shrink: 0;
}
.brand img {
  width: 168px;
  height: auto;
}
.header nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.header nav a {
  position: relative;
  padding: 20px 0;
}
.header nav a:hover,
.header nav a[aria-current] {
  color: var(--blue);
}
.header nav a[aria-current]:after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  background: var(--blue);
  border-radius: 2px;
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 6px;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}
.nav-cta:hover {
  background: var(--blue);
}
.menu-toggle {
  display: none;
}
.hero {
  background: #f5f7fb;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 48px;
}
.hero-copy {
  z-index: 2;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 23px;
  height: 2px;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(60px, 6.8vw, 102px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.hero-promise {
  font-size: clamp(20px, 2.25vw, 30px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 18px 0 24px;
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 32px;
}
.video-link {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.video-link > span {
  border: 1px solid #c8d0dd;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.guarantee-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #586174;
  margin-top: 20px;
}
.guarantee-link > span {
  color: var(--blue);
  border: 1px solid #9caed8;
  width: 17px;
  height: 19px;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
}
.hero-showcase {
  position: relative;
  min-height: 526px;
  display: grid;
  place-items: center;
}
.showcase-label {
  position: absolute;
  top: -5px;
  left: 3px;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 650;
  color: #748096;
}
.main-phone {
  position: relative;
  width: 248px;
  height: 430px;
  background: #161c24;
  border: 6px solid #121923;
  border-radius: 30px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 26px 48px #15264b30;
  transform: rotate(3deg);
}
.main-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-phone:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#0005, transparent 30%, transparent 48%, #000c);
  pointer-events: none;
}
.phone-top {
  position: absolute;
  left: 18px;
  right: 13px;
  top: 13px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  z-index: 4;
}
.phone-top button {
  border: 1px solid #ffffff65;
  border-radius: 50%;
  background: #0003;
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 11px;
}
.phone-open {
  position: absolute;
  inset: 20% 0 25%;
  background: transparent;
  border: 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 4;
}
.phone-open > span:last-child {
  font-size: 9px;
  letter-spacing: 0.08em;
}
.play {
  width: 62px;
  height: 62px;
  background: #ffffff26;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff90;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 3px;
  font-size: 19px;
  transition: transform 0.2s;
}
.phone-open:hover .play,
.case-video:hover .play {
  transform: scale(1.12);
  background: #2457ffe0;
}
.phone-bottom {
  position: absolute;
  bottom: 24px;
  left: 19px;
  z-index: 4;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.phone-bottom strong {
  font-family: Sora, sans-serif;
  font-size: 46px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.phone-bottom > span {
  font-size: 11px;
}
.side-card {
  position: absolute;
  width: 185px;
  height: 328px;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 20px 30px #13214015;
  top: 108px;
  filter: saturate(0.75);
}
.side-left {
  left: 3%;
  transform: rotate(-12deg);
}
.side-right {
  right: 0;
  transform: rotate(13deg);
}
.floating-label {
  position: absolute;
  right: -6px;
  bottom: 88px;
  z-index: 5;
  transform: rotate(-4deg);
  background: var(--cyan);
  padding: 16px 20px;
  box-shadow: 0 12px 20px #10141912;
  border-radius: 7px;
}
.floating-label > span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.floating-label strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}
.floating-label strong span {
  margin-left: 8px;
}
.hero-switch {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 5px;
  border: 1px solid #dce2ec;
  padding: 4px;
  border-radius: 40px;
}
.hero-switch button {
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: #667081;
  padding: 8px 17px;
  font-size: 11px;
}
.hero-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.hero-foot {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d7deea;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 550;
}
.hero-foot p {
  font-size: 13px;
  color: #354258;
  letter-spacing: 0;
}
.hero-foot p span {
  color: #a0aabd;
  margin: 0 18px;
}
.hero-foot > a {
  font-size: 22px;
}
.channel-band {
  background: var(--ink);
  color: #fff;
}
.channel-band > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}
.channel-band p {
  font-size: 9px;
  letter-spacing: 0.07em;
  color: #9da7b7;
  line-height: 1.6;
}
.channel-band strong {
  color: #fff;
  font-weight: 500;
}
.channel-band .wrap > span:not(.asterisk):not(.band-note) {
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.asterisk {
  color: var(--cyan);
  font-size: 24px;
}
.band-note {
  font-size: 10px;
  line-height: 1.5;
  color: #aab4c4;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.section-head > p,
.section-head > div > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  max-width: 370px;
}
.section-head .text-link {
  margin-top: 15px;
}
.rail-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 24px;
}
.rail-toolbar > span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.07em;
}
.rail-toolbar > div {
  display: flex;
  gap: 9px;
}
.round {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.round:hover {
  background: var(--blue);
  color: #fff;
}
.case-rail,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.case-video {
  border: 0;
  padding: 0;
  background: #101419;
  display: block;
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  text-align: left;
}
.case-video > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.case-video:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#0003, transparent 32%, #0001 48%, #000c);
}
.case-video:hover > img {
  transform: scale(1.04);
}
.case-type {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  border: 1px solid #ffffff60;
  background: #ffffff15;
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 5px 12px;
  font-size: 11px;
}
.case-video .play {
  position: absolute;
  top: 45%;
  left: calc(50% - 31px);
  z-index: 2;
}
.case-overlay {
  position: absolute;
  bottom: 26px;
  left: 24px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.case-overlay strong {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.05em;
  line-height: 1.15;
}
.case-overlay > span {
  font-size: 12px;
  color: #ddd;
}
.case-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 5px;
  gap: 8px;
}
.case-caption h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
}
.case-caption > span {
  font-size: 11px;
  color: var(--muted);
}
.source-note {
  font-size: 11px;
  line-height: 1.7;
  color: #7d8592;
  margin-top: 30px;
  max-width: 900px;
}
.manifesto {
  background: var(--blue);
  color: #fff;
}
.manifesto .eyebrow {
  color: #c2d1ff;
}
.manifesto h2 {
  font-size: clamp(39px, 5.1vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.manifesto em {
  color: #6cebf7;
}
.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid #ffffff40;
}
.manifesto-bottom > span {
  font-size: 11px;
  letter-spacing: 0.06em;
}
.manifesto-bottom p {
  color: #e0e8ff;
  font-size: 17px;
  line-height: 1.8;
}
.method {
  background: #f5f7fa;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.method-visual {
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #192432;
}
.method-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, #09111eea);
}
.method-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.method-stamp {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 32px;
  color: #fff;
}
.method-stamp > span {
  display: block;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-bottom: 16px;
  color: #82e5ed;
}
.method-stamp strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 500;
}
.method-steps details {
  border-top: 1px solid #cfd6e0;
}
.method-steps summary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 0;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}
.method-steps summary > span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 650;
}
.method-steps summary b {
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
}
.method-steps details[open] b {
  transform: rotate(45deg);
}
summary::-webkit-details-marker {
  display: none;
}
.method-steps details > div {
  padding: 0 25px 28px;
}
.method-steps p {
  font-size: 14px;
  line-height: 1.8;
}
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue);
  padding: 6px 10px;
  background: #e9efff;
  border-radius: 4px;
}
.method-steps .tag {
  margin-top: 20px;
}
.method-steps > .text-link {
  margin-top: 16px;
}
.guarantee {
  background: #11161e;
  color: #fff;
  overflow: hidden;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.guarantee .eyebrow {
  color: var(--cyan);
}
.million {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(130px, 21vw, 300px);
  letter-spacing: -0.09em;
  line-height: 1;
  color: #fff;
}
.million span {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 0.36em;
  color: var(--cyan);
  padding: 15px 0 0 12px;
}
.guarantee h2 {
  font-size: clamp(32px, 3.3vw, 46px);
}
.guarantee h2 em {
  color: var(--cyan);
}
.guarantee p {
  color: #9eaabd;
  font-size: 15px;
  margin: 26px 0;
}
.contract-facts {
  display: flex;
  gap: 30px;
  border-top: 1px solid #ffffff25;
  border-bottom: 1px solid #ffffff25;
  padding: 22px 0;
}
.contract-facts > span {
  font-size: 11px;
  color: #a6b2c2;
  display: flex;
  flex-direction: column;
}
.contract-facts strong {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.guarantee p.small {
  font-size: 11px;
  max-width: 440px;
  margin: 18px 0 27px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.faq-grid > .text-link,
.faq-grid > div > .text-link {
  margin-top: 25px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 15px;
  font-weight: 550;
  list-style: none;
}
.faq summary span {
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details > p {
  padding: 0 30px 25px 0;
  font-size: 14px;
  line-height: 1.8;
}
.journal {
  border-top: 1px solid var(--line);
}
.journal .section-head {
  margin-bottom: 0;
}
.journal .button {
  margin-top: 28px;
}
.final-cta {
  padding: 80px 0 90px;
  background: var(--blue);
  color: white;
}
.final-cta .eyebrow {
  color: #c8d6ff;
}
.final-cta h2 {
  font-size: clamp(48px, 6.5vw, 90px);
  letter-spacing: -0.065em;
}
.final-cta .wrap > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 28px;
}
.final-cta p:not(.eyebrow) {
  font-size: 17px;
  color: #dce5ff;
}
footer {
  background: #0c1017;
  color: #fff;
  padding: 65px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-top img {
  width: 170px;
  height: auto;
}
.footer-top > p {
  font-family: Sora, sans-serif;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #fff;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top > div > span {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: #8b99ad;
}
.footer-top > div > a {
  font-size: 17px;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
  font-size: 12px;
  color: #c3cbd8;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-top: 25px;
  font-size: 10px;
  color: #8794a9;
}
.footer-bottom > span {
  margin-right: auto;
}
.footer-bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: inherit;
}
.page-hero {
  padding: 85px 0 75px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.15;
}
.page-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 35px;
}
.page-intro > p {
  max-width: 600px;
  font-size: 17px;
}
.page-intro .button {
  flex-shrink: 0;
}
.program {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding-block: 90px;
}
.program-lead {
  background: var(--blue);
  border-radius: 12px;
  padding: 42px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
}
.program-lead > span {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.program-lead strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 125px;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 500;
  margin: 40px 0 22px;
}
.program-lead strong span {
  display: block;
  font-size: 39px;
  letter-spacing: -0.04em;
}
.program-lead p {
  color: #d5e1ff;
  font-size: 17px;
}
.deliverables article {
  position: relative;
  padding: 25px 0 25px 50px;
  border-top: 1px solid var(--line);
}
.deliverables article > span {
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
}
.deliverables h3 {
  font-size: 21px;
  margin-bottom: 15px;
}
.deliverables p {
  font-size: 15px;
}
.small-heading {
  font-size: 26px;
  margin-bottom: 32px;
}
.cases-page {
  padding-bottom: 75px;
}
.metrics-section {
  background: var(--mist);
}
.filter-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-list button {
  background: white;
  border: 1px solid #d9e0eb;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
}
.filter-list button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric-card {
  padding: 28px;
  background: white;
  border: 1px solid #e0e5ee;
  border-radius: 9px;
}
.metric-card h3 {
  margin: 22px 0 35px;
  font-size: 21px;
}
.metric-card > strong {
  display: block;
  font-size: 35px;
  letter-spacing: -0.06em;
  line-height: 1.2;
  color: var(--blue);
}
.metric-card > p {
  font-size: 13px;
  margin-top: 6px;
}
.metric-card > div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.metric-card a {
  font-size: 24px;
  color: var(--ink);
  padding: 0 7px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-grid p:not(.eyebrow) {
  margin-top: 23px;
}
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 480px;
  background: #101419;
}
.about-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-photo > span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #101419;
  color: white;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 10px 14px;
}
.values {
  background: var(--mist);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.values-grid article {
  border-top: 1px solid #bcc7d9;
  padding-top: 22px;
}
.values-grid article > span {
  font-size: 11px;
  color: var(--blue);
}
.values h3 {
  margin: 35px 0 22px;
  font-size: 31px;
}
.values p {
  font-size: 15px;
}
.contact-page {
  background: var(--mist);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-page h1 {
  font-size: clamp(42px, 4.7vw, 65px);
}
.contact-grid > div > p:not(.eyebrow) {
  margin-top: 28px;
  font-size: 16px;
  max-width: 450px;
}
.contact-direct {
  display: block;
  font-size: 12px;
  margin-top: 35px;
  color: var(--muted);
}
.contact-direct strong {
  display: block;
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 7px;
}
.contact-guarantee {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.contact-guarantee > span {
  font-size: 73px;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: var(--blue);
}
.contact-guarantee > p {
  font-size: 11px;
  line-height: 1.7;
}
.contact-guarantee strong {
  color: var(--ink);
}
#contact-form {
  background: #fff;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 60px #15285206;
}
.form-heading > span {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.form-heading > p {
  font-size: 21px;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 10px 0 28px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 550;
  margin: 22px 0 8px;
}
label span {
  color: var(--muted);
  font-weight: 400;
}
input,
textarea {
  width: 100%;
  background: #f7f8fb;
  border: 1px solid #e0e5ed;
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 5px;
  font-size: 14px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #8c96a7;
}
.form-note {
  font-size: 11px;
  margin: 20px 0;
  line-height: 1.7;
}
#contact-form .button {
  width: 100%;
}
#contact-status {
  font-size: 13px;
  margin-top: 15px;
  color: var(--blue);
}
dialog {
  padding: 24px;
  border: 1px solid #dce1e9;
  border-radius: 14px;
  max-width: min(94vw, 660px);
  color: var(--ink);
  box-shadow: 0 20px 100px #0005;
}
dialog::backdrop {
  background: #050b16dc;
  backdrop-filter: blur(8px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.dialog-top h2 {
  font-size: 21px;
}
.dialog-top button {
  border: 0;
  background: var(--mist);
  font-size: 25px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
#video-dialog {
  width: min(440px, 94vw);
}
#video-dialog video {
  max-height: 72dvh;
  margin: auto;
  width: auto;
  border-radius: 8px;
}
#video-dialog p {
  font-size: 12px;
  margin-top: 12px;
}
#privacy-dialog > p {
  font-size: 14px;
  margin-top: 15px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.is-visible {
  opacity: 1;
  transform: none;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1400px) {
  .hero-grid {
    padding-top: 80px;
    padding-bottom: 65px;
  }
  .hero-showcase {
    min-height: 580px;
  }
  .main-phone {
    width: 280px;
    height: 490px;
  }
  .side-card {
    width: 215px;
    height: 380px;
  }
  .case-video {
    height: 520px;
  }
  .floating-label {
    bottom: 90px;
    right: 15px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-wrap {
    padding: 0 32px;
    gap: 22px;
  }
  .header nav {
    gap: 18px;
    font-size: 12px;
  }
  .brand img {
    width: 145px;
  }
  .nav-cta {
    font-size: 12px;
    gap: 12px;
  }
  .hero-grid {
    gap: 10px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    padding-inline: 19px;
    gap: 16px;
  }
  .hero-showcase {
    min-height: 490px;
  }
  .main-phone {
    width: 221px;
    height: 390px;
  }
  .side-card {
    width: 159px;
    height: 282px;
  }
  .floating-label {
    right: -15px;
    padding: 14px;
    bottom: 85px;
  }
  .floating-label strong {
    font-size: 15px;
  }
  .showcase-label {
    font-size: 8px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .case-video {
    height: 390px;
  }
  .method-grid {
    gap: 40px;
  }
  .guarantee-grid {
    gap: 35px;
  }
  .faq-grid {
    gap: 50px;
  }
  .contact-grid {
    gap: 50px;
  }
  .method-steps summary {
    font-size: 15px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 79px;
    background: white;
    padding: 22px 32px;
    box-shadow: 0 20px 30px #10141915;
    flex-direction: column;
    align-items: stretch;
    font-size: 17px;
    gap: 0;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 12px 0;
  }
  .header nav a[aria-current]:after {
    display: none;
  }
  .nav-wrap {
    min-height: 80px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: none;
    width: 32px;
    height: 44px;
    padding: 4px;
  }
  .menu-toggle span {
    height: 2px;
    width: 24px;
    background: var(--ink);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-promise {
    font-size: 21px;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 14px;
  }
  .hero-showcase {
    min-height: 460px;
  }
  .main-phone {
    width: 198px;
    height: 350px;
  }
  .side-card {
    width: 145px;
    height: 257px;
    top: 110px;
  }
  .side-left {
    left: -8%;
  }
  .side-right {
    right: -8%;
  }
  .showcase-label > span:last-child {
    display: none;
  }
  .floating-label {
    bottom: 75px;
    right: -10px;
  }
  .floating-label > span {
    font-size: 8px;
  }
  .hero-foot {
    font-size: 8px;
  }
  .hero-foot p {
    font-size: 11px;
  }
  .hero-foot p span {
    margin: 0 8px;
  }
  .channel-band .wrap > span:not(.asterisk):not(.band-note) {
    font-size: 16px;
  }
  .band-note {
    display: none;
  }
  .section {
    padding: 80px 0;
  }
  .case-caption {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .case-video {
    height: 330px;
  }
  .case-overlay {
    left: 16px;
    bottom: 20px;
  }
  .case-overlay strong {
    font-size: 24px;
  }
  .case-type {
    left: 16px;
    top: 16px;
  }
  .method-grid {
    gap: 30px;
  }
  .method-visual {
    height: 410px;
  }
  .method-stamp {
    left: 23px;
  }
  .method-stamp strong {
    font-size: 25px;
  }
  .method-steps summary {
    font-size: 14px;
    gap: 10px;
  }
  .guarantee h2 {
    font-size: 33px;
  }
  .million {
    font-size: 180px;
  }
  .contract-facts {
    gap: 24px;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-page h1 {
    font-size: 44px;
  }
  #contact-form {
    padding: 26px;
  }
  .program {
    gap: 35px;
  }
  .program-lead {
    padding: 28px;
  }
  .program-lead strong {
    font-size: 110px;
  }
  .about-grid {
    gap: 35px;
  }
  .values-grid {
    gap: 30px;
  }
  .values h3 {
    font-size: 26px;
  }
  .footer-links nav {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    padding: 0 20px;
    gap: 17px;
    min-height: 76px;
  }
  .brand img {
    width: 125px;
  }
  .nav-cta {
    padding: 10px 12px;
    font-size: 10px;
    gap: 9px;
  }
  .header nav {
    top: 75px;
    padding: 18px 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 20px;
    gap: 26px;
  }
  .hero h1 {
    font-size: clamp(60px, 16vw, 90px);
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
  }
  .hero-promise {
    font-size: 24px;
    margin: 17px 0 20px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 340px;
  }
  .hero-description br {
    display: initial;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 24px;
  }
  .hero-actions .button {
    padding: 16px 20px;
    min-height: 54px;
  }
  .video-link {
    font-size: 12px;
  }
  .guarantee-link {
    font-size: 10px;
    margin-top: 20px;
  }
  .hero-showcase {
    min-height: 480px;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .showcase-label {
    top: 8px;
    left: 4px;
    font-size: 8px;
  }
  .showcase-label > span:last-child {
    display: block;
  }
  .main-phone {
    width: 223px;
    height: 391px;
    margin-top: 15px;
  }
  .side-card {
    width: 151px;
    height: 273px;
    top: 98px;
  }
  .side-left {
    left: 0;
  }
  .side-right {
    right: -1px;
  }
  .floating-label {
    right: -3px;
    bottom: 81px;
    padding: 13px 16px;
  }
  .floating-label strong {
    font-size: 15px;
  }
  .hero-switch {
    bottom: -2px;
  }
  .hero-foot {
    padding-block: 20px;
  }
  .hero-foot > span {
    display: none;
  }
  .hero-foot p {
    font-size: 12px;
  }
  .hero-foot p span {
    margin: 0 10px;
  }
  .channel-band > .wrap {
    padding: 24px 0;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .channel-band p {
    display: none;
  }
  .channel-band .wrap > span:not(.asterisk):not(.band-note) {
    font-size: 14px;
  }
  .asterisk {
    font-size: 16px;
  }
  .section {
    padding: 64px 0;
  }
  h2 {
    font-size: 36px;
  }
  .section-head {
    display: block;
    margin-bottom: 32px;
  }
  .section-head > p,
  .section-head > div + div {
    margin-top: 23px;
  }
  .section-head > div > p:not(.eyebrow),
  .section-head > p {
    font-size: 14px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 21px;
  }
  .rail-toolbar {
    margin-bottom: 19px;
  }
  .rail-toolbar > span {
    font-size: 9px;
  }
  .case-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 12px;
    gap: 17px;
  }
  .case-rail::-webkit-scrollbar {
    display: none;
  }
  .case-rail .case-card {
    min-width: 82%;
    scroll-snap-align: start;
  }
  .case-video {
    height: 420px;
  }
  .case-overlay strong {
    font-size: 30px;
  }
  .case-caption {
    flex-direction: row;
    align-items: center;
    margin-top: 17px;
  }
  .case-caption h3 {
    font-size: 17px;
  }
  .case-caption > span {
    font-size: 10px;
  }
  .source-note {
    font-size: 10px;
    margin-top: 21px;
  }
  .manifesto h2 {
    font-size: 38px;
  }
  .manifesto h2 br {
    display: none;
  }
  .manifesto-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
    padding-top: 24px;
  }
  .manifesto-bottom > span {
    font-size: 10px;
  }
  .manifesto-bottom p {
    font-size: 16px;
  }
  .method-grid,
  .guarantee-grid,
  .faq-grid,
  .program,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .method-visual {
    height: 330px;
  }
  .method-stamp strong {
    font-size: 27px;
  }
  .method-steps summary {
    font-size: 16px;
    padding: 23px 0;
  }
  .method-steps p {
    font-size: 15px;
  }
  .method-steps details > div {
    padding-left: 28px;
  }
  .guarantee-grid {
    gap: 45px;
  }
  .guarantee .million {
    font-size: 180px;
    line-height: 0.95;
  }
  .million span {
    font-size: 12px;
    letter-spacing: 0.35em;
    padding-top: 22px;
    padding-left: 6px;
  }
  .guarantee h2 {
    font-size: 36px;
  }
  .guarantee p {
    font-size: 15px;
  }
  .contract-facts {
    gap: 45px;
  }
  .guarantee .small {
    font-size: 11px;
  }
  .faq-grid {
    gap: 30px;
  }
  .faq summary {
    font-size: 15px;
  }
  .faq details > p {
    font-size: 14px;
  }
  .journal .section-head {
    display: block;
  }
  .journal .button {
    margin-top: 23px;
  }
  .final-cta {
    padding: 60px 0;
  }
  .final-cta h2 {
    font-size: 48px;
  }
  .final-cta .wrap > div {
    display: block;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
  }
  .final-cta .button {
    margin-top: 26px;
    font-size: 13px;
    padding: 17px 20px;
    gap: 20px;
  }
  .footer-top {
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-top img {
    width: 145px;
  }
  .footer-top > p {
    font-size: 23px;
  }
  .footer-top > div {
    width: 100%;
    gap: 7px;
  }
  .footer-links {
    gap: 28px;
    align-items: start;
  }
  .footer-links nav {
    gap: 15px 25px;
  }
  .footer-links > a {
    white-space: nowrap;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom > span {
    width: 100%;
    font-size: 10px;
  }
  .page-hero {
    padding: 52px 0;
  }
  .page-hero h1 {
    font-size: 41px;
    line-height: 1.15;
  }
  .page-intro {
    display: block;
    margin-top: 25px;
  }
  .page-intro > p {
    font-size: 16px;
  }
  .page-intro .button {
    margin-top: 25px;
  }
  .program {
    padding-block: 55px;
  }
  .program-lead {
    min-height: 370px;
    padding: 30px;
  }
  .program-lead strong {
    margin: 30px 0 20px;
  }
  .deliverables h3 {
    font-size: 22px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .case-grid .case-video {
    height: 480px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metric-card {
    padding: 26px;
  }
  .filter-list {
    gap: 7px;
  }
  .filter-list button {
    font-size: 12px;
    padding: 9px 15px;
  }
  .metric-card h3 {
    margin-bottom: 28px;
  }
  .metric-card > strong {
    font-size: 39px;
  }
  .about-photo {
    height: 350px;
  }
  .about-grid h2 {
    font-size: 35px;
  }
  .about-grid p:not(.eyebrow) {
    font-size: 16px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .values h3 {
    font-size: 31px;
    margin: 25px 0 18px;
  }
  .contact-page h1 {
    font-size: 49px;
  }
  .contact-grid {
    gap: 40px;
  }
  .contact-grid > div > p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-guarantee {
    margin-top: 30px;
  }
  .contact-direct strong {
    font-size: 23px;
  }
  #contact-form {
    padding: 26px 22px;
  }
  .form-heading > p {
    font-size: 21px;
  }
  input,
  textarea {
    font-size: 16px;
  }
  dialog {
    padding: 18px;
  }
  .dialog-top h2 {
    font-size: 20px;
  }
  .button {
    font-size: 14px;
  }
  html {
    scroll-padding-top: 85px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
/* Keep supporting copy legible at every breakpoint. */
.hero h1 em {
  margin-left: 0.045em;
}
.guarantee-link,
.source-note,
.form-note,
.footer-bottom {
  font-size: 12px;
}
.hero .eyebrow,
.eyebrow,
.rail-toolbar > span,
.showcase-label,
.tag {
  font-size: 11px;
}
.case-caption > span,
.case-type,
.hero-switch button,
.phone-top,
.phone-bottom > span {
  font-size: 12px;
}
.hero-switch button {
  padding: 8px 15px;
}
.nav-cta {
  font-size: 12px;
}
.footer-links {
  font-size: 13px;
}
@media (max-width: 640px) {
  .hero .eyebrow {
    font-size: 10px;
  }
  .showcase-label {
    font-size: 8px;
  }
  .guarantee-link {
    font-size: 11px;
  }
  .nav-cta {
    font-size: 11px;
  }
  .source-note {
    font-size: 11px;
  }
  .case-caption > span {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .nav-cta {
    display: none;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-promise {
    font-size: 21px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-description br {
    display: none;
  }
  .final-cta .button {
    gap: 12px;
    padding-inline: 15px;
  }
}

/* Three process scenes follow the accordion, without advancing the reader. */
.method-visual[data-method-motion]:after {
  display: none;
}
.method-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0.5s;
  overflow: hidden;
}
.method-scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.method-scene:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, #09111e18 35%, #09111ef5 100%);
}
.method-scene .method-stamp {
  z-index: 3;
}
.method-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  animation: method-drift 12s ease-in-out infinite alternate;
}
.method-scene * {
  animation-play-state: paused !important;
}
.method-visual.is-playing .method-scene.is-active * {
  animation-play-state: running !important;
}
.brief-board {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 30px;
  right: 30px;
  display: grid;
  gap: 10px;
}
.brief-kicker {
  color: #bbccd8;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
.brief-note {
  padding: 10px 15px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  border: 1px solid #ffffff30;
  background: #101b2ac9;
  backdrop-filter: blur(12px);
  border-radius: 8px;
  color: #7aebf1;
  font-size: 10px;
  box-shadow: 0 10px 30px #0002;
  animation: brief-float 6s ease-in-out infinite;
}
.brief-note:nth-child(3) {
  margin-left: 22px;
  animation-delay: -2s;
}
.brief-note:nth-child(4) {
  margin-right: 22px;
  animation-delay: -4s;
}
.brief-note b {
  color: white;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}
.brief-note small {
  grid-column: 2;
  color: #b3c3d4;
  font-size: 10px;
  margin-top: 3px;
  line-height: 1.3;
}
.identity-scene {
  background: #647887;
}
.identity-portrait {
  position: absolute;
  inset: 0;
}
.identity-portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  animation: method-drift 10s ease-in-out infinite alternate;
}
.identity-frame {
  position: absolute;
  inset: 17% 24% 31%;
  border: 1px solid #a2f3ee90;
  border-radius: 16px;
  box-shadow: 0 0 0 8px #8deee20b;
  overflow: hidden;
}
.identity-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #b7fff7;
  box-shadow: 0 0 20px 3px #64f6e580;
  animation: identity-scan 4s ease-in-out infinite alternate;
}
.voice-track {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 137px;
  padding: 12px 16px;
  border: 1px solid #ffffff36;
  background: #102134de;
  backdrop-filter: blur(12px);
  border-radius: 9px;
  width: 155px;
  transform: rotate(-3deg);
  box-shadow: 0 12px 24px #0002;
}
.voice-track > span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #c3faf5;
  margin-bottom: 8px;
}
.voice-bars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  gap: 3px;
}
.voice-bars i {
  width: 3px;
  height: calc(26px * var(--bar));
  background: #67e8e0;
  border-radius: 4px;
  animation: voice-pulse 1.1s var(--delay) ease-in-out infinite alternate;
}
.identity-caption {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 25px;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 5px #0008;
}
.feed-scene {
  background:
    radial-gradient(ellipse at 50% 30%, #2457ff80, transparent 70%), #0b172b;
}
.feed-phones {
  position: absolute;
  inset: 0;
}
.feed-phone {
  position: absolute;
  width: 37%;
  height: 73%;
  top: 14%;
  border: 4px solid #14233b;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 18px 30px #0006;
  animation: feed-float 7s ease-in-out infinite;
}
.feed-phone:nth-child(1) {
  left: -2%;
  --tilt: -12deg;
  animation-delay: -2s;
}
.feed-phone:nth-child(2) {
  left: 31.5%;
  z-index: 1;
  --tilt: 0deg;
  top: 9%;
}
.feed-phone:nth-child(3) {
  right: -2%;
  --tilt: 12deg;
  animation-delay: -4s;
}
.feed-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-phone > span {
  position: absolute;
  top: 13px;
  left: 10px;
  background: #0c142cbe;
  padding: 4px 8px;
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
}
.feed-phone > b {
  position: absolute;
  top: 53%;
  left: 8px;
  right: 8px;
  text-align: center;
  color: #fff;
  font-size: clamp(11px, 1.3vw, 18px);
  line-height: 1.25;
  text-shadow: 0 2px 8px #000;
}
.method-scene-status {
  position: absolute;
  z-index: 5;
  left: 30px;
  top: 27px;
  display: flex;
  gap: 5px;
}
.method-scene-status span {
  width: 17px;
  height: 3px;
  background: #ffffff35;
  border-radius: 5px;
  transition:
    width 0.4s ease,
    background 0.4s ease;
}
.method-scene-status span.is-active {
  width: 35px;
  background: #76f1ea;
}
.method-visual:has(.identity-scene.is-active) .method-scene-status {
  top: 48px;
  left: 25px;
}
.method-motion-toggle {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff50;
  color: #fff;
  background: #102032bb;
  cursor: pointer;
  font-size: 12px;
}
.method-motion-toggle[hidden] {
  display: none;
}
@keyframes method-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07) translateY(-1%);
  }
}
@keyframes brief-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes identity-scan {
  from {
    top: 8%;
  }
  to {
    top: 92%;
  }
}
@keyframes voice-pulse {
  from {
    transform: scaleY(0.3);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes feed-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt));
  }
  50% {
    transform: translateY(-16px) rotate(var(--tilt));
  }
}
@media (max-width: 700px) {
  .brief-board {
    top: 48px;
    left: 23px;
    right: 23px;
    gap: 7px;
  }
  .brief-note {
    padding: 8px 12px;
  }
  .brief-note b {
    font-size: 13px;
  }
  .brief-note small {
    font-size: 9px;
  }
  .brief-kicker {
    font-size: 8px;
    margin: 0;
  }
  .method-scene .method-stamp {
    bottom: 22px;
  }
  .method-scene .method-stamp > span {
    margin-bottom: 10px;
    font-size: 9px;
  }
  .method-scene .method-stamp strong {
    font-size: clamp(23px, 6vw, 27px);
  }
  .method-scene-status {
    left: 23px;
    top: 24px;
  }
  .voice-track {
    right: 18px;
    bottom: 113px;
    width: 135px;
    padding: 9px 12px;
  }
  .feed-phone {
    border-width: 3px;
    border-radius: 14px;
  }
}
@media (max-width: 360px) {
  .brief-board {
    top: 44px;
    gap: 6px;
  }
  .brief-note {
    padding: 7px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .method-scene,
  .method-scene-status span {
    transition: none;
  }
  .method-visual.is-playing .method-scene.is-active * {
    animation: none !important;
  }
  .method-scene * {
    animation: none !important;
  }
  .identity-scan {
    top: 48%;
  }
  .feed-phone {
    transform: rotate(var(--tilt));
  }
}

/* Service navigation: native disclosure works with mouse, touch and keyboard. */
.viral-dropdown > summary { display:flex; align-items:center; gap:8px; padding:20px 0; cursor:pointer; list-style:none; }
.viral-dropdown > summary::-webkit-details-marker { display:none; }
.viral-dropdown > summary > span { transition:transform .2s; }
.viral-dropdown[open] > summary { color:#2457ff; }
.viral-dropdown[open] > summary > span { transform:rotate(180deg); }
.viral-menu { position:absolute; top:calc(100% - 1px); left:50%; transform:translateX(-50%); width:min(1050px,calc(100vw - 64px)); max-height:calc(100dvh - 120px); overflow:auto; overscroll-behavior:contain; background:white; border:1px solid #d8dfe8; border-radius:0 0 14px 14px; box-shadow:0 22px 40px #10141918; padding:24px 30px 30px; }
.viral-menu-top { display:flex; justify-content:space-between; gap:16px; padding-bottom:16px; border-bottom:1px solid #d8dfe8; margin-bottom:24px; }
.header nav .viral-menu-top a { padding:0; font-size:13px; color:#2457ff; }
.viral-menu-groups { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px 36px; }
.viral-menu-groups h3 { font-size:14px; letter-spacing:-.02em; margin:0 0 10px; color:#101419; }
.header nav .viral-menu-groups a { display:block; font-size:13px; padding:6px 8px; margin-left:-8px; border-radius:5px; color:#536174; }
.header nav .viral-menu-groups a:hover,.header nav .viral-menu-groups a[aria-current] { color:#2457ff; background:#eaf0ff; }
.header nav .viral-menu a[aria-current]:after { display:none; }
@media(max-width:850px) {
 .header nav.open { max-height:calc(100dvh - 80px); overflow-y:auto; overscroll-behavior:contain; }
 .viral-dropdown > summary { padding:12px 0; justify-content:space-between; }
 .viral-menu { position:static; transform:none; width:100%; max-height:none; overflow:visible; box-shadow:none; border:0; padding:12px 0 22px; }
 .viral-menu-top { flex-direction:column; margin-bottom:20px; }
 .viral-menu-groups { grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px 18px; }
 .header nav .viral-menu-groups a { padding:9px 8px; }
}
@media(prefers-reduced-motion:reduce) { .viral-dropdown > summary > span { transition:none; } }
/* A short service list replaces the full taxonomy. */
.viral-dropdown-compact { position:relative; }
.viral-menu-compact { left:50%;width:340px;max-height:calc(100dvh - 115px);padding:20px;top:100%;border-radius:12px; }
.header nav .viral-menu-compact a { display:flex;justify-content:space-between;gap:15px;padding:12px 10px;font-size:14px;border-radius:6px; }
.header nav .viral-menu-compact a:hover { background:#edf3fc; }
.header nav .viral-menu-compact .viral-menu-overview { color:#2457ff;border-bottom:1px solid #e0e6ef;margin-bottom:10px;border-radius:0;font-size:12px; }
.header nav .viral-menu-compact .viral-menu-all { border-top:1px solid #e0e6ef;margin-top:10px;font-size:12px;color:#536174;border-radius:0; }
@media(max-width:850px) { .viral-menu-compact { width:100%;padding:6px 0 18px; } }

.site-honeypot { position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden; }
.site-consent { display:flex;align-items:flex-start;gap:12px;line-height:1.6;margin:24px 0 12px; }
.site-consent input { width:20px;height:20px;flex-shrink:0;margin-top:2px;accent-color:#2457ff; }
.site-consent span { font-size:12px;color:#546175; }
.field-hint { font-size:11px;line-height:1.5;margin-top:7px;color:#546175; }
.privacy-inline { font:inherit;padding:0;background:none;border:0;text-decoration:underline;cursor:pointer; }
#contact-form button:disabled { opacity:.7;cursor:default; }
#contact-form input:not([type=checkbox]), #contact-form textarea { font-size:16px; }
