.seko-page {
  --seko-ink: #0b0c0e;
  --seko-paper: #f7f4ee;
  --seko-warm: #eeebe5;
  --seko-muted: #646b73;
  --seko-line: rgba(11, 12, 14, 0.14);
  --seko-cyan: #62d7dd;
  overflow: clip;
  background: #fff;
  color: var(--seko-ink);
}

.seko-container {
  width: min(var(--page-max, 1180px), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.seko-hero {
  --seko-hero-drag-x: 0px;
  position: relative;
  width: 100%;
  height: clamp(345px, 23vw, 437px);
  min-height: 345px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--seko-paper);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.seko-hero.is-dragging {
  cursor: grabbing;
}

.seko-hero:focus-visible {
  outline: 2px solid var(--seko-cyan);
  outline-offset: -2px;
}

.seko-hero__slides,
.seko-hero__slide,
.seko-hero__media,
.seko-hero__media > img,
.seko-hero__video-wrap,
.seko-hero__video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seko-hero__slide {
  z-index: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0);
  transform: translateZ(0);
  will-change: clip-path;
}

.seko-hero__slides {
  z-index: 0;
}

.seko-hero__slide.is-active,
.seko-hero__slide.is-entering,
.seko-hero__slide.is-leaving {
  visibility: visible;
}

.seko-hero__slide.is-active {
  pointer-events: auto;
}

.seko-hero__slide.is-leaving {
  z-index: 1;
}

.seko-hero__slide.is-entering {
  z-index: 2;
}

.seko-hero__media {
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: filter, transform;
}

.seko-hero.is-dragging .seko-hero__slide.is-active .seko-hero__media {
  transform: translate3d(var(--seko-hero-drag-x), 0, 0) scale(1.004);
}

.seko-hero.is-snapping-back .seko-hero__slide.is-active .seko-hero__media {
  transform: translate3d(var(--seko-hero-drag-x), 0, 0) scale(1.004);
  transition: transform 260ms cubic-bezier(0.22, 0.76, 0.2, 1);
}

.seko-hero__media > img,
.seko-hero__video-wrap video {
  display: block;
  object-fit: cover;
  object-position: center;
}

.seko-hero__video-wrap video {
  filter: saturate(0.98) contrast(1.04) brightness(0.96);
}

.seko-hero__video-wrap.seko-hero__video-wrap--editorial video {
  filter: none;
}

.seko-hero__media--editorial > img {
  z-index: 0;
}

.seko-hero__editorial-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  aspect-ratio: 1915 / 821;
  transform: translateY(-50%);
  isolation: isolate;
  pointer-events: none;
}

.seko-hero__editorial-window,
.seko-hero__editorial-window-glow {
  position: absolute;
  top: 30.33%;
  left: 71.54%;
  width: 21.62%;
  height: 43.73%;
}

.seko-hero__editorial-window {
  z-index: 3;
  overflow: hidden;
  background: #dce6e6;
  clip-path: polygon(0 30.9%, 95.9% 0, 100% 95.5%, 0 100%);
}

.seko-hero__editorial-window video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
  filter: saturate(0.68) contrast(0.92) brightness(1.08);
  transform: scale(-1.025, 1.025);
}

.seko-hero__film-motion {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 5px rgba(183, 231, 235, 0.2));
  pointer-events: none;
}

.seko-hero__film-motion path {
  fill: none;
}

.seko-film__wash {
  stroke: rgba(205, 226, 228, 0.3);
  stroke-width: 72;
  opacity: 0.24;
}

.seko-film-track--rear .seko-film__wash {
  stroke-width: 66;
  opacity: 0.2;
}

.seko-film__frames {
  stroke: rgba(226, 247, 248, 0.12);
  stroke-width: 62;
  stroke-dasharray: 69 11;
  stroke-linecap: butt;
}

.seko-film-track--rear .seko-film__frames {
  stroke-width: 56;
  opacity: 0.84;
}

.seko-film__separators {
  stroke: rgba(238, 254, 255, 0.3);
  stroke-width: 68;
  stroke-dasharray: 2 78;
  stroke-linecap: butt;
}

.seko-film-track--rear .seko-film__separators {
  stroke-width: 62;
  opacity: 0.78;
}

.seko-film__holes {
  stroke: rgba(239, 255, 255, 0.72);
  stroke-width: 7;
  stroke-dasharray: 6 14;
  stroke-linecap: butt;
  filter: drop-shadow(0 0 2px rgba(149, 224, 230, 0.58));
}

.seko-film-track--rear .seko-film__holes {
  opacity: 0.74;
}

.seko-film__runner {
  stroke: rgba(249, 255, 255, 0.58);
  stroke-width: 2.2;
  stroke-dasharray: 92 148;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(163, 235, 240, 0.78));
}

.seko-film__moving {
  animation: seko-film-travel 26s linear infinite;
  will-change: stroke-dashoffset;
}

.seko-film-track--rear .seko-film__moving {
  animation-delay: -13s;
}

.seko-hero__water-defs {
  position: absolute;
}

.seko-hero__editorial-water-spill {
  position: absolute;
  z-index: 5;
  top: 63.3374%;
  left: 63.9687%;
  width: 29.5039%;
  height: 11.2058%;
  overflow: hidden;
  opacity: 0.76;
  mix-blend-mode: screen;
  clip-path: url();
  -webkit-clip-path: url();
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0.84) 75%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0.84) 75%, transparent 100%);
  filter: saturate(0.6) contrast(0.88) brightness(1.22) drop-shadow(0 7px 9px rgba(74, 187, 201, 0.14));
  pointer-events: none;
}

.seko-hero__editorial-water-spill video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
  filter: saturate(0.62) contrast(0.9) brightness(1.22);
  transform: translate3d(-1.2%, 0, 0) scale(-1.04, 1.04);
  animation: seko-water-drift 7.5s ease-in-out infinite alternate;
}

.seko-hero__editorial-water-spill::after {
  position: absolute;
  inset: -8% -3%;
  background: radial-gradient(ellipse 16% 10% at 13% 63%, rgba(239, 255, 255, 0.82), transparent 68%), radial-gradient(ellipse 21% 8% at 31% 56%, rgba(219, 249, 252, 0.66), transparent 70%), radial-gradient(ellipse 18% 7% at 53% 52%, rgba(242, 255, 255, 0.62), transparent 72%), radial-gradient(ellipse 24% 8% at 79% 47%, rgba(214, 247, 250, 0.5), transparent 72%);
  content: "";
  mix-blend-mode: screen;
  filter: blur(0.7px);
  animation: seko-water-foam 15s ease-in-out infinite;
}

.seko-hero__interaction-light {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.seko-hero__beam-outside,
.seko-hero__beam-inside,
.seko-hero__light-hit {
  opacity: 0;
}

.seko-hero__beam-outside,
.seko-hero__beam-inside {
  mix-blend-mode: screen;
}

.seko-hero__light-hit {
  mix-blend-mode: soft-light;
  transform-box: fill-box;
  transform-origin: center;
}

.seko-hero__frame-strike {
  fill: none;
  stroke: rgba(244, 255, 255, 0.92);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  filter: drop-shadow(0 0 3px rgba(181, 237, 241, 0.52));
}

.seko-hero__slide.is-active .seko-hero__beam-motion {
  transform-box: view-box;
  transform-origin: 1370px 360px;
  animation: seko-beam-drift 15s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.seko-hero__slide.is-active .seko-hero__beam-outside {
  animation: seko-beam-outside-cycle 15s ease-in-out infinite;
}

.seko-hero__slide.is-active .seko-hero__beam-inside {
  animation: seko-beam-inside-cycle 15s ease-in-out infinite;
}

.seko-hero__slide.is-active .seko-hero__light-hit {
  animation: seko-light-hit-cycle 15s ease-in-out infinite;
}

.seko-hero__slide.is-active .seko-hero__frame-strike {
  animation: seko-frame-strike 15s ease-in-out infinite;
}

.seko-hero__editorial-window-glow {
  z-index: 4;
  overflow: visible;
  opacity: 0.78;
  filter: drop-shadow(0 0 2px rgba(206, 251, 255, 0.96)) drop-shadow(0 0 8px rgba(118, 224, 231, 0.46));
  animation: seko-editorial-glow-breathe 5.8s ease-in-out infinite;
}

.seko-hero__editorial-window-glow polygon {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.seko-hero__editorial-window-glow-base {
  stroke: rgba(224, 253, 255, 0.72);
  stroke-width: 1.35;
}

.seko-hero__editorial-window-glow-runner {
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 18 82;
  animation: seko-editorial-glow-flow 8s linear infinite;
}

@keyframes seko-film-travel {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -240; }
}

@keyframes seko-water-drift {
  to { transform: translate3d(1%, 0.8%, 0) scale(-1.08, 1.08); }
}

@keyframes seko-water-foam {
  0%, 100% { opacity: 0.28; transform: translate3d(-2.5%, 0, 0); }
  32% { opacity: 0.78; transform: translate3d(0.5%, 1%, 0); }
  52% { opacity: 0.48; transform: translate3d(2%, 1.5%, 0); }
  76% { opacity: 0.34; transform: translate3d(1%, 0, 0); }
}

@keyframes seko-beam-drift {
  0%, 10%, 100% { transform: translate3d(-8px, -5px, 0) scale(0.99); }
  32% { transform: translate3d(-2px, -1px, 0) scale(1); }
  52% { transform: translate3d(7px, 4px, 0) scale(1.012); }
  68% { transform: translate3d(3px, 1px, 0) scale(1.004); }
  84% { transform: translate3d(-5px, -3px, 0) scale(0.994); }
}

@keyframes seko-beam-outside-cycle {
  0%, 10%, 100% { opacity: 0; }
  24% { opacity: 0.45; }
  40% { opacity: 0.6; }
  58% { opacity: 0.44; }
  68% { opacity: 0.58; }
  84% { opacity: 0; }
}

@keyframes seko-beam-inside-cycle {
  0%, 14%, 100% { opacity: 0; }
  28% { opacity: 0.44; }
  42% { opacity: 0.72; }
  58% { opacity: 0.52; }
  68% { opacity: 0.7; }
  84% { opacity: 0; }
}

@keyframes seko-light-hit-cycle {
  0%, 22%, 100% { opacity: 0; transform: rotate(28deg) scale(0.92); }
  40% { opacity: 0.85; transform: rotate(28deg) scale(1); }
  56% { opacity: 0.48; transform: rotate(28deg) scale(1.035); }
  68% { opacity: 0.72; transform: rotate(28deg) scale(1.02); }
  82% { opacity: 0; transform: rotate(28deg) scale(1.06); }
}

@keyframes seko-frame-strike {
  0%, 25%, 100% { opacity: 0; stroke-dasharray: 0 100; stroke-dashoffset: 0; }
  34% { opacity: 0.62; stroke-dasharray: 28 72; }
  46% { opacity: 0.26; stroke-dasharray: 38 62; stroke-dashoffset: -26; }
  60% { opacity: 0.46; stroke-dasharray: 20 80; stroke-dashoffset: -58; }
  72% { opacity: 0; stroke-dasharray: 0 100; stroke-dashoffset: -100; }
}

@keyframes seko-editorial-glow-breathe {
  0%, 100% { opacity: 0.64; filter: drop-shadow(0 0 2px rgba(206, 251, 255, 0.82)) drop-shadow(0 0 7px rgba(118, 224, 231, 0.34)); }
  52% { opacity: 0.94; filter: drop-shadow(0 0 3px rgba(234, 255, 255, 1)) drop-shadow(0 0 13px rgba(109, 229, 236, 0.6)); }
}

@keyframes seko-editorial-glow-flow {
  to { stroke-dashoffset: -200; }
}

.seko-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.seko-hero__shade--editorial {
  background: linear-gradient(90deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.9) 34%, rgba(250, 248, 244, 0.24) 62%, rgba(250, 248, 244, 0) 78%);
}

.seko-hero__shade--video {
  background: linear-gradient(90deg, rgba(250, 248, 244, 0.94) 0%, rgba(250, 248, 244, 0.82) 32%, rgba(250, 248, 244, 0.3) 49%, rgba(250, 248, 244, 0) 68%);
}

.seko-hero__shade--dark {
  background: linear-gradient(90deg, rgba(5, 8, 10, 0.93) 0%, rgba(5, 8, 10, 0.8) 33%, rgba(5, 8, 10, 0.24) 52%, rgba(5, 8, 10, 0) 70%);
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__content,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__eyebrow,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) h1,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__lead,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-text-link:not(.seko-text-link--dark),
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__meta {
  color: #fff;
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__eyebrow {
  color: rgba(146, 234, 238, 0.9);
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__lead,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero__meta {
  color: rgba(255, 255, 255, 0.72);
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-text-link--dark {
  border-color: #fff;
  background: #fff;
  color: #0b0c0e;
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero-switcher__progress {
  background: rgba(255, 255, 255, 0.28);
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero-switcher__progress i,
.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero-switcher__dots button.is-active {
  background: #fff;
}

.seko-hero:is([data-seko-hero-index="1"], [data-seko-hero-index="2"]) .seko-hero-switcher__dots button {
  background: rgba(255, 255, 255, 0.4);
}

.seko-hero__gate {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -12vw;
  width: 12vw;
  min-width: 86px;
  max-width: 176px;
  visibility: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(224, 250, 251, 0.22) 47%, rgba(255, 255, 255, 0.76) 50%, rgba(224, 250, 251, 0.16) 53%, rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.seko-hero.is-transitioning[data-seko-hero-direction="next"] .seko-hero__slide.is-entering {
  animation: seko-hero-reveal-next 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="prev"] .seko-hero__slide.is-entering {
  animation: seko-hero-reveal-prev 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="next"] .seko-hero__slide.is-entering .seko-hero__media {
  animation: seko-hero-media-in-next 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="prev"] .seko-hero__slide.is-entering .seko-hero__media {
  animation: seko-hero-media-in-prev 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="next"] .seko-hero__slide.is-leaving .seko-hero__media {
  animation: seko-hero-media-out-next 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="prev"] .seko-hero__slide.is-leaving .seko-hero__media {
  animation: seko-hero-media-out-prev 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning .seko-hero__slide.is-leaving .seko-hero__media {
  translate: var(--seko-hero-drag-x) 0;
  transition: translate 260ms cubic-bezier(0.22, 0.76, 0.2, 1);
}

.seko-hero.is-transitioning[data-seko-hero-direction="next"] .seko-hero__gate {
  visibility: visible;
  animation: seko-hero-gate-next 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

.seko-hero.is-transitioning[data-seko-hero-direction="prev"] .seko-hero__gate {
  visibility: visible;
  animation: seko-hero-gate-prev 900ms cubic-bezier(0.22, 0.76, 0.2, 1) both;
}

@keyframes seko-hero-reveal-next {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0); }
}

@keyframes seko-hero-reveal-prev {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes seko-hero-media-in-next {
  from { filter: saturate(0.82) brightness(0.82); transform: translate3d(2.8%, 0, 0) scale(1.045); }
  to { filter: saturate(1) brightness(1); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes seko-hero-media-in-prev {
  from { filter: saturate(0.82) brightness(0.82); transform: translate3d(-2.8%, 0, 0) scale(1.045); }
  to { filter: saturate(1) brightness(1); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes seko-hero-media-out-next {
  from { filter: brightness(1); transform: translate3d(0, 0, 0) scale(1); }
  to { filter: brightness(0.76); transform: translate3d(-1.2%, 0, 0) scale(1.012); }
}

@keyframes seko-hero-media-out-prev {
  from { filter: brightness(1); transform: translate3d(0, 0, 0) scale(1); }
  to { filter: brightness(0.76); transform: translate3d(1.2%, 0, 0) scale(1.012); }
}

@keyframes seko-hero-gate-next {
  0% { opacity: 0; transform: translate3d(calc(100vw + 12vw), 0, 0); }
  12% { opacity: 0.48; }
  82% { opacity: 0.34; }
  100% { opacity: 0; transform: translate3d(0, 0, 0); }
}

@keyframes seko-hero-gate-prev {
  0% { opacity: 0; transform: translate3d(0, 0, 0); }
  12% { opacity: 0.48; }
  82% { opacity: 0.34; }
  100% { opacity: 0; transform: translate3d(calc(100vw + 12vw), 0, 0); }
}

.seko-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}

.seko-hero__content.is-refreshing > .seko-hero__eyebrow,
.seko-hero__content.is-refreshing > h1,
.seko-hero__content.is-refreshing > .seko-hero__lead,
.seko-hero__content.is-refreshing > .seko-hero__actions {
  animation: seko-hero-copy-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.seko-hero[data-seko-hero-direction="next"] .seko-hero__content.is-refreshing > .seko-hero__eyebrow,
.seko-hero[data-seko-hero-direction="next"] .seko-hero__content.is-refreshing > h1,
.seko-hero[data-seko-hero-direction="next"] .seko-hero__content.is-refreshing > .seko-hero__lead,
.seko-hero[data-seko-hero-direction="next"] .seko-hero__content.is-refreshing > .seko-hero__actions {
  animation-name: seko-hero-copy-in-next;
}

.seko-hero[data-seko-hero-direction="prev"] .seko-hero__content.is-refreshing > .seko-hero__eyebrow,
.seko-hero[data-seko-hero-direction="prev"] .seko-hero__content.is-refreshing > h1,
.seko-hero[data-seko-hero-direction="prev"] .seko-hero__content.is-refreshing > .seko-hero__lead,
.seko-hero[data-seko-hero-direction="prev"] .seko-hero__content.is-refreshing > .seko-hero__actions {
  animation-name: seko-hero-copy-in-prev;
}

.seko-hero__content.is-refreshing > h1 { animation-delay: 35ms; }
.seko-hero__content.is-refreshing > .seko-hero__lead { animation-delay: 70ms; }
.seko-hero__content.is-refreshing > .seko-hero__actions { animation-delay: 105ms; }

@keyframes seko-hero-copy-in {
  from { opacity: 0; filter: blur(5px); transform: translateY(10px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes seko-hero-copy-in-next {
  from { opacity: 0; filter: blur(5px); transform: translate3d(14px, 0, 0); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
}

@keyframes seko-hero-copy-in-prev {
  from { opacity: 0; filter: blur(5px); transform: translate3d(-14px, 0, 0); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
}

.seko-hero__eyebrow {
  margin: 0 0 10px;
  color: #2c5156;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seko-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #101114;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.seko-hero__lead {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(24, 28, 32, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.seko-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.seko-text-link {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: #111;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.seko-text-link:hover {
  gap: 15px;
  color: #0d7d84;
}

.seko-text-link--dark {
  padding: 0 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.seko-text-link--dark:hover {
  border-color: #0d7d84;
  background: #0d7d84;
  color: #fff;
}

.seko-hero__meta {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--page-max, 1180px)) / 2));
  bottom: 18px;
  left: max(24px, calc((100vw - var(--page-max, 1180px)) / 2));
  display: flex;
  justify-content: flex-end;
  color: rgba(17, 17, 17, 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seko-hero-switcher {
  position: absolute;
  z-index: 6;
  bottom: 14px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
}

.seko-hero-switcher__progress {
  position: relative;
  display: block;
  width: clamp(72px, 7vw, 106px);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 12, 14, 0.18);
}

.seko-hero-switcher__progress i {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #0b0c0e;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.seko-hero-switcher__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.seko-hero-switcher__dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 12, 14, 0.3);
  cursor: pointer;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.seko-hero-switcher__dots button:hover,
.seko-hero-switcher__dots button:focus-visible {
  background: #0d7d84;
  outline: none;
  transform: scale(1.4);
}

.seko-hero-switcher__dots button.is-active {
  background: #0b0c0e;
  box-shadow: none;
  transform: scale(1.2);
}

.seko-media {
  position: absolute;
  inset: 0;
}

.seko-media video,
.seko-feature-visual > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  cursor: pointer;
}

.seko-media-controls {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 7px;
}

.seko-hero__video-wrap .seko-media-controls {
  top: auto;
  right: max(24px, calc((100vw - var(--page-max, 1180px)) / 2));
  bottom: 48px;
}

.seko-media-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(8, 10, 12, 0.46);
  color: #fff;
  font: 600 11px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.seko-media-controls button:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(8, 10, 12, 0.72);
  transform: translateY(-1px);
}

.seko-media-controls button.is-unmuted {
  border-color: var(--seko-cyan);
  color: var(--seko-cyan);
}

body[data-page="seko"] .seko-quick-nav__inner {
  width: min(var(--page-max, 1180px), calc(100% - 48px));
}

body[data-page="seko"] .seko-quick-nav a {
  font-weight: 600;
}

.seko-chapter {
  position: relative;
  width: 100%;
  padding: 72px 0;
  scroll-margin-top: 112px;
}

.seko-chapter__header {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
  column-gap: clamp(36px, 4vw, 56px);
  row-gap: 20px;
  margin-bottom: 40px;
}

.seko-chapter__index {
  grid-column: 1 / 4;
  padding-top: 10px;
  color: #858b92;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.seko-chapter__header h2 {
  grid-column: 1;
  margin: 0;
  color: #0b0c0e;
  font-size: clamp(36px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.seko-chapter__header > p {
  grid-column: 2;
  width: min(720px, 100%);
  max-width: 100%;
  align-self: end;
  margin: 0;
  color: var(--seko-muted);
  font-size: 14px;
  line-height: 1.72;
}

@media (min-width: 701px) {
  .seko-faq-section .seko-faq-intro {
    align-items: end;
    grid-template-columns: max(218px, calc(25% - 15px)) minmax(0, 1fr);
    column-gap: 20px;
    row-gap: 0;
  }

  .seko-faq-section .seko-faq-intro h2 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(40px, 4vw, 56px);
    white-space: nowrap;
  }

  .seko-faq-section .seko-faq-intro > p {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    max-width: none;
    margin: 0;
  }

  .seko-chapter__header--with-controls .seko-scenario-controls {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (min-width: 981px) {
  .seko-chapter__header--with-controls {
    grid-template-columns: max-content minmax(0, 1fr) auto;
  }

  .seko-chapter__header--with-controls .seko-scenario-controls {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }
}

.seko-overview {
  background: #fff;
}

.seko-overview__editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.seko-overview__statement {
  grid-column: 1 / 5;
  align-self: start;
  padding-top: 12px;
}

.seko-overview__statement h3 {
  margin: 0;
  color: #111;
  font-size: clamp(21px, 1.8vw, 24px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.26;
  text-wrap: balance;
}

.seko-overview__statement p {
  margin: 18px 0 0;
  color: var(--seko-muted);
  font-size: 13px;
  line-height: 1.72;
}

.seko-overview__statement p + p {
  margin-top: 12px;
}

.seko-overview__workspace {
  position: relative;
  grid-column: 5 / 13;
  margin: 0;
  background: #f0f1f1;
}

@media (min-width: 981px) {
  .seko-overview__editorial {
    grid-template-columns: minmax(340px, 4fr) minmax(0, 8fr);
  }

  .seko-overview__statement {
    grid-column: 1;
  }

  .seko-overview__workspace {
    grid-column: 2;
  }

  html[lang="zh-CN"] .seko-overview__statement h3,
  html[lang="zh-Hant"] .seko-overview__statement h3 {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

.seko-overview__workspace > img:first-child {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.seko-overview__workspace figcaption {
  position: absolute;
  top: 24px;
  left: 0;
  max-width: 280px;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.seko-overview__inset {
  position: absolute;
  right: 24px;
  bottom: -58px;
  width: min(38%, 360px);
  border: 8px solid #fff;
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.18);
}

.seko-process {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 110px 0 0;
  padding: 0;
  background: #111;
  color: #fff;
  list-style: none;
}

.seko-process li {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.seko-process li:last-child {
  border-right: 0;
}

.seko-process span {
  display: block;
  margin-bottom: 52px;
  color: var(--seko-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.seko-process strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.seko-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.seko-features {
  background: #090a0c;
  color: #fff;
}

.seko-chapter__header--light h2 {
  color: #fff;
}

.seko-chapter__header--light > p {
  color: rgba(255, 255, 255, 0.58);
}

.seko-chapter__header--light .seko-chapter__index {
  color: var(--seko-cyan);
}

.seko-feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: stretch;
}

.seko-feature-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-image: var(--seko-feature-image);
  background-position: var(--seko-feature-position);
  background-size: 200% 200%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: background-position 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.seko-feature-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(2, 3, 4, 0.82) 100%);
  content: "";
}

.seko-feature-visual::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(98, 215, 221, 0.08) 34%, rgba(247, 244, 238, 0.94) 50%, rgba(98, 215, 221, 0.12) 66%, transparent 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.seko-feature-visual.is-switching::before {
  animation: seko-feature-wipe 700ms cubic-bezier(0.77, 0, 0.18, 1) both;
}

.seko-feature-visual > video {
  transition: filter 420ms ease, opacity 420ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.seko-feature-visual.is-switching > video {
  filter: saturate(0.72) contrast(1.12);
  opacity: 0.56;
  transform: scale(1.025);
}

@keyframes seko-feature-wipe {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

.seko-feature-visual > [data-seko-feature-count],
.seko-feature-visual > [data-seko-feature-title] {
  position: absolute;
  z-index: 2;
  right: 28px;
  left: 28px;
}

.seko-feature-visual > [data-seko-feature-count] {
  top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.seko-feature-visual > [data-seko-feature-title] {
  bottom: 26px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.seko-feature-visual > video {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.seko-feature-visual > .seko-media-controls {
  top: 20px;
  right: 20px;
}

.seko-feature-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.seko-feature-overlay__panel {
  position: absolute;
  inset: 72px 28px 112px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 620ms;
  visibility: hidden;
}

.seko-feature-overlay__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms, 180ms, 0s;
  visibility: visible;
}

.seko-feature-overlay__panel--editor {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seko-editor-head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.78);
  font: 600 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.14em;
}

.seko-editor-head b {
  color: var(--seko-cyan);
  font-size: 9px;
  font-weight: 700;
}

.seko-editor-brief {
  display: flex;
  width: min(430px, 82%);
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 6, 8, 0.66);
  backdrop-filter: blur(14px);
}

.seko-editor-brief > i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--seko-cyan);
  box-shadow: 0 0 18px rgba(98, 215, 221, 0.9);
  animation: seko-ui-pulse 1.5s ease-in-out infinite;
}

.seko-editor-brief span {
  display: grid;
  gap: 4px;
}

.seko-editor-brief strong {
  color: #fff;
  font-size: 12px;
  font-weight: 650;
}

.seko-editor-brief small {
  color: rgba(255, 255, 255, 0.52);
  font: 500 9px/1.3 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.seko-editor-timeline {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(3, 5, 7, 0.78);
  backdrop-filter: blur(18px);
}

.seko-editor-timeline > div {
  display: flex;
  height: 9px;
  gap: 4px;
}

.seko-editor-timeline > div span {
  width: var(--w);
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(98, 215, 221, 0.86), rgba(98, 215, 221, 0.35));
}

.seko-editor-timeline > div:nth-child(2) span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18));
}

.seko-editor-timeline > div:nth-child(3) span {
  background: linear-gradient(90deg, rgba(164, 126, 255, 0.76), rgba(164, 126, 255, 0.2));
}

.seko-editor-playhead {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 14px;
  width: 1px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: seko-playhead 5s linear infinite;
}

.seko-feature-overlay__panel--prompt {
  display: grid;
  align-content: space-between;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.seko-prompt-card {
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(18px);
}

.seko-prompt-card span,
.seko-storyboard-strip b {
  color: var(--seko-cyan);
  font: 650 8px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.13em;
}

.seko-prompt-card p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}

.seko-prompt-card > i {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-top: 8px;
  background: var(--seko-cyan);
  animation: seko-caret 760ms steps(1) infinite;
}

.seko-storyboard-strip {
  display: grid;
  align-self: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.seko-storyboard-strip > span {
  display: grid;
  min-height: 76px;
  align-content: space-between;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 8, 10, 0.58);
  backdrop-filter: blur(12px);
}

.seko-storyboard-strip i {
  width: 70%;
  height: 2px;
  background: rgba(255, 255, 255, 0.48);
}

.seko-generating {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 9px 12px;
  border: 1px solid rgba(98, 215, 221, 0.5);
  background: rgba(8, 20, 22, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.seko-generating i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seko-cyan);
  box-shadow: 0 0 12px rgba(98, 215, 221, 0.9);
  animation: seko-ui-pulse 1.2s ease-in-out infinite;
}

.seko-feature-overlay__panel--character {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seko-character-label {
  display: grid;
  gap: 7px;
  color: #fff;
}

.seko-character-label span {
  color: var(--seko-cyan);
  font: 650 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.14em;
}

.seko-character-label strong {
  font-size: 13px;
  font-weight: 620;
}

.seko-character-grid {
  display: grid;
  height: min(44%, 190px);
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.seko-character-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #0a0d0f;
}

.seko-character-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  filter: saturate(0.92) contrast(1.08);
}

.seko-character-grid figure:nth-child(2) video {
  object-position: 50% 42%;
}

.seko-character-grid figcaption {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  color: #fff;
  font: 650 7px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 8px #000;
}

.seko-feature-overlay__panel--models {
  display: grid;
  place-items: center;
}

.seko-model-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  border: 1px solid rgba(98, 215, 221, 0.75);
  border-radius: 50%;
  background: rgba(5, 12, 14, 0.7);
  box-shadow: 0 0 0 20px rgba(98, 215, 221, 0.06), 0 0 48px rgba(98, 215, 221, 0.24);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(16px);
}

.seko-model-core span {
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.seko-model-core small {
  margin-top: 5px;
  color: var(--seko-cyan);
  font: 600 7px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.12em;
}

.seko-model-wordmark {
  position: absolute;
  min-width: 86px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 9, 12, 0.66);
  color: #fff;
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.08em;
  text-align: center;
  backdrop-filter: blur(12px);
}

.seko-model-wordmark--a { top: 10%; left: 7%; }
.seko-model-wordmark--b { top: 12%; right: 4%; }
.seko-model-wordmark--c { bottom: 20%; left: 2%; }
.seko-model-wordmark--d { right: 8%; bottom: 18%; }

.seko-feature-overlay__panel--models > p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  text-align: center;
}

@keyframes seko-playhead {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100% + 420px)); }
}

@keyframes seko-ui-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.16); }
}

@keyframes seko-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.seko-feature-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.seko-feature-row {
  display: grid;
  width: 100%;
  min-height: 146px;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: start;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, padding-left 220ms ease;
}

.seko-feature-row:hover,
.seko-feature-row.is-active {
  padding-left: 12px;
  color: var(--seko-cyan);
}

.seko-feature-row__index {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.seko-feature-row__copy strong {
  display: block;
  color: currentColor;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.seko-feature-row__copy em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
}

.seko-feature-row__arrow {
  color: rgba(255, 255, 255, 0.46);
  font-size: 15px;
  transition: transform 220ms ease;
}

.seko-feature-row.is-active .seko-feature-row__arrow,
.seko-feature-row:hover .seko-feature-row__arrow {
  color: var(--seko-cyan);
  transform: translate(3px, -3px);
}

.seko-scenarios {
  background: var(--seko-paper);
}

.seko-chapter__header--with-controls {
  position: relative;
}

.seko-scenario-controls {
  grid-column: 8 / 13;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-self: end;
  margin-top: 28px;
}

.seko-scenario-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #111;
  border-radius: 50%;
  background: transparent;
  color: #111;
  font-size: 17px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.seko-scenario-controls button:hover:not(:disabled) {
  background: #111;
  color: #fff;
}

.seko-scenario-controls button:disabled {
  opacity: 0.25;
  cursor: default;
}

.seko-scenario-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - var(--page-max, 1180px)) / 2)) 28px;
  scroll-behavior: smooth;
  scroll-padding-left: max(24px, calc((100vw - var(--page-max, 1180px)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.seko-scenario-track::-webkit-scrollbar {
  display: none;
}

.seko-scenario-panel {
  position: relative;
  flex: 0 0 min(74vw, 860px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  scroll-snap-align: start;
}

.seko-scenario-panel:nth-child(even) {
  flex-basis: min(60vw, 700px);
}

.seko-scenario-panel img,
.seko-scenario-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.seko-scenario-panel:hover img,
.seko-scenario-panel:hover video {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.seko-scenario-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(4, 5, 6, 0.82) 100%);
  pointer-events: none;
}

.seko-scenario-panel__copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: block;
  color: #fff;
  pointer-events: none;
}

.seko-scenario-panel__copy > span {
  position: static;
  color: var(--seko-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.seko-scenario-panel__copy h3 {
  max-width: 500px;
  margin: 12px 0 0;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.seko-scenario-panel__copy p {
  max-width: 480px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.seko-faq-section {
  background: #fff;
}

.seko-faq-layout {
  display: block;
}

@media (min-width: 701px) {
  .seko-faq-section .seko-faq-layout {
    display: grid;
    grid-template-columns: max(218px, calc(25% - 15px)) minmax(0, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }

  .seko-faq-section .seko-faq-intro {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .seko-faq-section .seko-faq {
    grid-column: 2;
    min-width: 0;
  }
}

.seko-faq {
  border-bottom: 1px solid var(--seko-line);
}

.seko-faq details {
  border-top: 1px solid var(--seko-line);
}

.seko-faq summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: 40px minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.seko-faq summary::-webkit-details-marker {
  display: none;
}

.seko-faq__number {
  color: #92979d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.seko-faq summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.seko-faq__mark {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.seko-faq__mark::before,
.seko-faq__mark::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: #111;
  content: "";
  transition: transform 220ms ease;
}

.seko-faq__mark::after {
  transform: rotate(90deg);
}

.seko-faq details[open] .seko-faq__mark::after {
  transform: rotate(0deg);
}

.seko-faq__answer {
  max-width: 720px;
  padding: 0 44px 28px 54px;
  color: var(--seko-muted);
  font-size: 13px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.seko-final-cta {
  position: relative;
  overflow: hidden;
  padding: 0 0 96px;
  background: #08090b;
  color: #fff;
}

.seko-final-cta__line {
  width: max-content;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-2vw);
}

.seko-final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.seko-final-cta h2 {
  width: min(900px, 100%);
  margin: 0;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.seko-final-cta p {
  width: min(680px, 100%);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.seko-final-cta .seko-text-link--inverse {
  min-width: 228px;
  min-height: 56px;
  justify-content: center;
  margin: 22px 0 0;
  padding: 0 28px;
  border: 1px solid var(--seko-cyan);
  border-radius: 999px;
  background: var(--seko-cyan);
  box-shadow: 0 12px 32px rgba(98, 215, 221, 0.18);
  color: #071012;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, gap 180ms ease;
}

.seko-final-cta .seko-text-link--inverse > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #071012;
  color: #fff;
  transition: transform 180ms ease;
}

.seko-final-cta .seko-text-link--inverse:hover {
  gap: 15px;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 16px 38px rgba(98, 215, 221, 0.25);
  color: #071012;
  transform: translateY(-2px);
}

.seko-final-cta .seko-text-link--inverse:hover > span {
  transform: rotate(8deg);
}

.seko-final-cta .seko-text-link--inverse:active {
  transform: translateY(0) scale(0.985);
}

.seko-final-cta .seko-text-link--inverse:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  color: #071012;
}

@media (min-width: 981px) {
  .seko-final-cta h2 {
    white-space: nowrap;
  }
}

.seko-feature-row:focus-visible,
.seko-scenario-controls button:focus-visible,
.seko-media-controls button:focus-visible,
.seko-faq summary:focus-visible,
.seko-text-link:focus-visible,
.seko-quick-nav a:focus-visible {
  outline: 2px solid var(--seko-cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .seko-chapter__header {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 32px;
  }

  .seko-chapter__index {
    grid-column: 1 / 3;
  }

  .seko-chapter__header h2 {
    grid-column: 1;
  }

  .seko-chapter__header > p {
    grid-column: 2;
  }

  .seko-overview__statement {
    grid-column: 1 / 5;
    margin-bottom: 0;
  }

  .seko-overview__workspace {
    grid-column: 5 / 13;
  }

  .seko-feature-stage {
    grid-template-columns: 1fr;
  }

  .seko-feature-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .seko-feature-row {
    min-height: 126px;
  }

  .seko-scenario-controls {
    grid-column: 2;
    grid-row: 2;
  }

}

@media (max-width: 700px) {
  .seko-container {
    width: calc(100% - 32px);
  }

  .seko-hero {
    height: 345px;
    min-height: 345px;
  }

  .seko-hero__media > img {
    object-position: 62% center;
  }

  .seko-hero__media--editorial > img {
    object-position: 72% center;
  }

  .seko-hero__editorial-stage {
    top: 0;
    left: 72%;
    width: auto;
    height: 100%;
    transform: translateX(-72%);
  }

  .seko-hero__beam-outside {
    display: none;
  }

  .seko-hero__editorial-water-spill {
    opacity: 0.7;
  }

  .seko-hero__video-wrap video {
    object-position: 72% center;
  }

  .seko-hero__shade--editorial {
    background: linear-gradient(90deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.9) 58%, rgba(250, 248, 244, 0.36) 100%);
  }

  .seko-hero__shade--video {
    background: linear-gradient(90deg, rgba(250, 248, 244, 0.94) 0%, rgba(250, 248, 244, 0.72) 58%, rgba(250, 248, 244, 0.18) 100%);
  }

  .seko-hero__shade--video.seko-hero__shade--dark {
    background: linear-gradient(90deg, rgba(5, 8, 10, 0.94) 0%, rgba(5, 8, 10, 0.78) 62%, rgba(5, 8, 10, 0.26) 100%);
  }

  .seko-hero__content {
    padding-top: 8px;
  }

  .seko-hero h1 {
    max-width: 90%;
    font-size: 29px;
    line-height: 1.08;
  }

  .seko-hero__lead {
    display: -webkit-box;
    max-width: 88%;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .seko-hero__actions {
    gap: 20px;
    margin-top: 14px;
  }

  .seko-hero__meta {
    display: none;
  }

  .seko-hero-switcher__progress {
    width: 66px;
  }

  .seko-hero__video-wrap .seko-media-controls {
    right: 16px;
    bottom: 18px;
  }

  .seko-media-controls {
    top: 14px;
    right: 14px;
  }

  .seko-media-controls button {
    width: 34px;
    height: 34px;
  }

  body[data-page="seko"] .seko-quick-nav__inner {
    width: calc(100% - 32px);
    justify-content: flex-start;
  }

  .seko-chapter {
    padding: 56px 0;
  }

  .seko-chapter__header,
  .seko-faq-intro {
    display: block;
    margin-bottom: 32px;
  }

  .seko-chapter__index {
    display: block;
    margin-bottom: 22px;
    padding: 0;
  }

  .seko-chapter__header h2,
  .seko-faq-intro h2 {
    font-size: 34px;
    line-height: 1;
    white-space: normal;
  }

  .seko-chapter__header > p,
  .seko-faq-intro > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .seko-overview .seko-chapter__header > p {
    max-width: none;
  }

  .seko-overview__editorial {
    display: block;
  }

  .seko-overview__statement {
    padding: 0;
  }

  .seko-overview__statement h3 {
    font-size: 22px;
    line-height: 1.26;
  }

  .seko-overview__workspace {
    margin-top: 28px;
  }

  .seko-overview__workspace figcaption {
    top: 12px;
    max-width: 70%;
    padding: 8px 12px;
    font-size: 9px;
  }

  .seko-overview__inset {
    right: 12px;
    bottom: -34px;
    width: 42%;
    border-width: 4px;
  }

  .seko-process {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .seko-process li {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .seko-process li:last-child {
    border-bottom: 0;
  }

  .seko-process span {
    margin-bottom: 26px;
  }

  .seko-feature-visual {
    aspect-ratio: 4 / 5;
  }

  .seko-feature-visual > [data-seko-feature-title] {
    font-size: 34px;
  }

  .seko-feature-overlay__panel {
    inset: 66px 16px 104px;
  }

  .seko-feature-overlay__panel--prompt {
    grid-template-columns: 1fr;
  }

  .seko-storyboard-strip {
    align-self: end;
  }

  .seko-character-grid {
    height: 42%;
    gap: 5px;
  }

  .seko-model-core {
    width: 114px;
    height: 114px;
  }

  .seko-model-wordmark {
    min-width: 66px;
    padding: 8px;
    font-size: 9px;
  }

  .seko-feature-row {
    min-height: 136px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .seko-feature-row:hover,
  .seko-feature-row.is-active {
    padding-left: 6px;
  }

  .seko-feature-row__copy strong {
    font-size: 17px;
  }

  .seko-scenario-controls {
    justify-content: flex-end;
    margin-top: 20px;
  }

  .seko-scenario-panel,
  .seko-scenario-panel:nth-child(even) {
    flex-basis: 86vw;
    aspect-ratio: 4 / 5;
  }

  .seko-scenario-track {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-left: 16px;
  }

  .seko-scenario-panel__copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: block;
  }

  .seko-scenario-panel__copy h3 {
    font-size: 30px;
  }

  .seko-scenario-panel__copy p {
    margin-top: 18px;
  }

  .seko-faq summary {
    min-height: 84px;
    grid-template-columns: 32px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  .seko-faq summary strong {
    font-size: 15px;
  }

  .seko-faq__answer {
    padding: 0 34px 30px 42px;
    font-size: 13px;
  }

  .seko-final-cta {
    padding-bottom: 72px;
  }

  .seko-final-cta__inner {
    display: flex;
    padding-top: 56px;
  }

  .seko-final-cta h2 {
    width: min(340px, 100%);
    margin-top: 0;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    white-space: normal;
  }

  .seko-final-cta p {
    width: min(326px, 100%);
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.7;
  }

  .seko-final-cta .seko-text-link--inverse {
    width: min(280px, 100%);
    min-width: 0;
    min-height: 56px;
    margin-top: 20px;
    padding: 0 24px;
  }
}

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

  .seko-hero__editorial-window-glow {
    opacity: 0.72;
  }

  .seko-film__moving,
  .seko-hero__editorial-water-spill video,
  .seko-hero__editorial-water-spill::after,
  .seko-hero__beam-motion,
  .seko-hero__beam-outside,
  .seko-hero__beam-inside,
  .seko-hero__light-hit,
  .seko-hero__frame-strike {
    animation: none !important;
  }

  .seko-hero__beam-outside { opacity: 0.03; }
  .seko-hero__beam-inside { opacity: 0.07; }
  .seko-hero__light-hit { opacity: 0.05; }
}
<!--ºÄÊ±1790169789.4969Ãë-->