@font-face {
  font-family: "SamsungOne";
  src: url("/static/css/fonts/SamsungOne-400_v1.0.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SamsungOne";
  src: url("/static/css/fonts/SamsungOne-500_v1.0.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "SamsungOne";
  src: url("/static/css/fonts/SamsungOne-700_v1.0.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "SamsungOne";
  src: url("/static/css/fonts/SamsungOne-800_v1.0.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800 950;
}

@font-face {
  font-family: "SamsungSharpSans";
  src: url("/static/css/fonts/iCielSamsungSharpSansRegular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SamsungSharpSans";
  src: url("/static/css/fonts/iCielSamsungSharpSans-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500 600;
}

@font-face {
  font-family: "SamsungSharpSans";
  src: url("/static/css/fonts/iCielSamsungSharpSans-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 950;
}

:root {
  color-scheme: light;
  --poster-width: min(100vw, calc(100svh * 375 / 666));
  --flow-width: min(100vw, 430px);
  --font-body: "SamsungOne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "SamsungSharpSans", "SamsungOne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #0b0d12;
  --blue: #2446b8;
  --blue-deep: #162d9f;
  --blue-bright: #078ce1;
  --button-gradient: linear-gradient(180deg, #359ef8 0%, #3172de 100%);
  --panel: rgba(255, 255, 255, 0.94);
  --line: rgba(20, 38, 76, 0.13);
  --shadow: 0 18px 40px rgba(12, 30, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #eef3f8;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--ink);
  background: #eef3f8;
}

body.page-step {
  background: #dff6fb;
}

body.page-home {
  background: #f4f4f4;
}

body.video-modal-open,
body.avatar-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  width: var(--poster-width);
  height: 0;
  padding: 12px 18px 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.site-back {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(8, 140, 225, 0.4);
  outline-offset: 2px;
}

.menu-lines {
  display: grid;
  gap: 5px;
  width: 31px;
}

.menu-lines span {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header[data-menu-open="true"] .menu-lines span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.site-header[data-menu-open="true"] .menu-lines span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu-open="true"] .menu-lines span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 58px;
  right: 18px;
  display: grid;
  min-width: 188px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.site-header[data-menu-open="true"] .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a {
  border-radius: 8px;
  padding: 12px 14px;
  color: #15203a;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue);
  background: #edf5ff;
  outline: 0;
}

main {
  display: flex;
  justify-content: center;
  min-height: 100svh;
  background: #eef3f8;
}

.page-home main {
  background: #f4f4f4;
}

.home-hero {
  position: relative;
  width: var(--poster-width);
  aspect-ratio: 375 / 666;
  overflow: hidden;
  background: #f4f4f4;
}

.page-home .site-header {
  padding: 4px 12px 0;
}

.page-home .menu-toggle {
  place-items: center end;
  width: 44px;
  height: 42px;
}

.page-home .menu-lines {
  width: 24px;
  height: 21px;
  background: url("/static/images/commons/menu.png?v=20260707f") center / contain no-repeat;
}

.page-home .menu-lines span {
  display: none;
}

.page-home .site-nav {
  top: 52px;
  right: 10px;
}

.home-title-art {
  position: absolute;
  top: min(7.6%, 13.6vw);
  left: 50%;
  z-index: 2;
  display: block;
  width: 93%;
  height: auto;
  transform: translateX(-50%);
}

.home-actions {
  position: absolute;
  top: min(28.1%, 49.9vw);
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 15px;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 18px 20px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.home-cta-primary {
  width: 60%;
  min-width: 210px;
  border: 0;
  color: #ffffff;
  background: var(--button-gradient);
  box-shadow: none;
}

.home-cta-secondary {
  width: 60%;
  min-width: 210px;
  border: 2px solid #050505;
  color: #050505;
  background: transparent;
  cursor: pointer;
}

.home-cta:hover,
.home-cta:focus-visible {
  outline: 3px solid rgba(47, 143, 243, 0.28);
  outline-offset: 3px;
}

.home-phone-art {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
}

.home-disclaimer {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 4;
  width: 95%;
  margin: 0;
  color: #050505;
  font-size: clamp(0.5rem, 2vw, 0.62rem);
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
  text-shadow: none;
  transform: translateX(-50%);
}

.home-disclaimer span {
  display: block;
}

.home-disclaimer span + span {
  margin-top: 3px;
}

.home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  transition: opacity 160ms ease;
}

.home-video-modal[hidden] {
  display: none;
}

.home-video-modal.is-open {
  opacity: 1;
}

.home-video-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--poster-width);
  min-height: 100svh;
  padding: 64px 0 28px;
  overflow-y: auto;
}

.video-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-size: clamp(1rem, 4.8vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.36);
  cursor: pointer;
}

.video-sample {
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0;
}

.video-sample-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(93.75%, calc(56.25svh - 84px));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff url("/static/images/commons/thumb.png?v=20260707f") center / cover no-repeat;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.3);
}

.sample-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.sample-video::-webkit-media-controls {
  display: none !important;
}

.video-sample-frame.is-playing .sample-video {
  opacity: 1;
  cursor: pointer;
}

.video-play-button {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(76px, 22.4vw, 86px);
  height: clamp(76px, 22.4vw, 86px);
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: url("/static/images/commons/btn-play.png?v=20260707f") center / contain no-repeat;
  cursor: pointer;
}

.video-sample-frame.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-modal-close:focus-visible,
.video-play-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.site-footer {
  display: none;
}

.page-step .site-header {
  align-items: center;
  justify-content: space-between;
  width: var(--poster-width);
  height: auto;
  padding: 9px 10px 0;
}

.page-step .site-back {
  display: block;
  width: 75px;
  height: 27px;
  border: 0;
  padding: 0;
  pointer-events: auto;
}

.site-back-image {
  display: block;
  width: 100%;
  height: auto;
}

.page-step .menu-toggle {
  width: 36px;
  height: 36px;
}

.page-step .menu-lines {
  gap: 4px;
  width: 24px;
}

.page-step .menu-lines span {
  height: 4px;
}

.page-step .site-header[data-menu-open="true"] .menu-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.page-step .site-header[data-menu-open="true"] .menu-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.page-step .site-nav {
  top: 50px;
  right: 10px;
}

.page-step main {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(115deg, #80b9f8 0%, #e9f8ff 42%, #dbf8f4 100%);
}

.step-one {
  position: relative;
  width: var(--poster-width);
  min-height: 100svh;
  overflow: hidden;
  padding: 42px 11px 0;
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-title-art {
  position: relative;
  z-index: 2;
  display: block;
  width: min(93.5%, 356px);
  height: auto;
  margin: 0 auto 16px;
}

.create-info-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px 24px 0 0;
  padding: 18px 15px max(26px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -7px 28px rgba(56, 116, 180, 0.22);
}

.create-info-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  width: 100%;
  margin-bottom: 8px;
}

.create-info-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 25px;
  border-radius: 999px;
  padding: 1px 13px 2px;
  color: #ffffff;
  background: #050505;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.create-info-heading h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.56rem, 7.7vw, 2.05rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.step-heading {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 3px;
  font-family: var(--font-display);
  margin: 0 0 7px;
}

.step-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 1px 15px 2px;
  color: #ffffff;
  background: #05070b;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.step-heading h1 {
  margin: 0;
  color: #05070b;
  font-size: clamp(1.55rem, 7.2vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  text-align: center;
}

.phone-slider {
  position: relative;
  height: clamp(530px, calc(100svh - 88px), 720px);
}

.phone-card {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: clamp(8px, 1.6svh, 14px);
  width: min(85vw, 390px);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: clamp(10px, 2.1svh, 16px) 10px clamp(10px, 2svh, 16px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(12, 59, 125, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.84);
  transition: opacity 180ms ease, transform 220ms ease;
}

.phone-card.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.phone-card.is-prev {
  z-index: 2;
  opacity: 0.72;
  transform: translateX(calc(-50% - 84%)) scale(0.82);
}

.phone-card.is-next {
  z-index: 2;
  opacity: 0.72;
  transform: translateX(calc(-50% + 84%)) scale(0.82);
}

.phone-card:not(.is-active) .phone-card-actions,
.phone-card:not(.is-active) .next-step,
.phone-card:not(.is-active) .step-dots {
  visibility: hidden;
}

.phone-art {
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
}

.phone-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.phone-card-actions {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.phone-card-actions h2 {
  margin: 0;
  color: #05070b;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 6.4vw, 1.85rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.round-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #101216;
  border-radius: 50%;
  padding: 0;
  color: #101216;
  background: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.round-arrow:focus-visible,
.next-step:focus-visible {
  outline: 3px solid rgba(8, 140, 225, 0.35);
  outline-offset: 2px;
}

.next-step {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(64%, 260px);
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--button-gradient);
  box-shadow: 0 10px 18px rgba(10, 77, 184, 0.18);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 4.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.step-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-self: center;
  width: min(56%, 188px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-dots li {
  position: relative;
  display: grid;
  place-items: center;
}

.step-dots li:not(:last-child)::after {
  position: absolute;
  left: calc(50% + 13px);
  width: calc(100% - 26px);
  border-top: 2px dashed #0d56b5;
  content: "";
}

.step-dots span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #0d56b5;
  border-radius: 50%;
  color: #0d56b5;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.step-dots span.is-active {
  color: #ffffff;
  background: #0d56b5;
}

.step-two {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: var(--poster-width);
  min-height: 100svh;
  padding: 42px 8px 0;
}

.step-two .step-heading {
  margin-bottom: 13px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 18px 18px 0 0;
  padding: 18px 18px max(17px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(12, 59, 125, 0.12);
}

.select-field {
  position: relative;
  z-index: 1;
  width: 100%;
}

.select-field.is-open {
  z-index: 10;
}

.select-field.has-error .select-trigger {
  border-color: #d70015;
  box-shadow: 0 0 0 2px rgba(215, 0, 21, 0.14);
}

.select-validation-message {
  display: block;
  margin: 5px 17px 0;
  color: #b00020;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.select-validation-message[hidden] {
  display: none;
}

.select-trigger,
.text-input {
  width: 100%;
  height: 52px;
  min-height: 52px;
  border: 1px solid #050505;
  border-radius: 999px;
  padding: 0 58px 0 19px;
  color: #92959b;
  background: #f1f4f9;
  font: inherit;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
  text-align: left;
  text-transform: none;
  touch-action: manipulation;
}

.text-input {
  padding-right: 19px;
}

.text-input[name="consultant"] {
  font-size: clamp(0.72rem, 2.9vw, 0.84rem);
  letter-spacing: -0.01em;
}

.select-trigger {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.select-field.has-value .select-trigger {
  color: #0c111d;
}

.select-trigger:disabled {
  color: #96989d;
  cursor: not-allowed;
}

.select-trigger span:first-child {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 4px 0 2px;
  line-height: 1.4;
}

.select-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000000 url("/static/images/commons/down.png?v=20260707f") center / contain no-repeat;
  transform: translateY(-50%);
}

.select-menu {
  position: absolute;
  z-index: 1;
  top: calc(100% - 26px);
  left: 0;
  right: 0;
  max-height: min(264px, calc(42svh + 26px));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding-top: 26px;
  background: #70706e;
  box-shadow: none;
}

.select-search {
  width: 100%;
  height: 40px;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 0 16px;
  color: #ffffff;
  background: #626260;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
  outline: 0;
}

.select-search::placeholder {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.select-options {
  max-height: min(198px, calc(42svh - 40px));
  overflow-y: auto;
  padding: 0;
  scrollbar-width: none;
}

.select-options::-webkit-scrollbar {
  display: none;
}

.select-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 39px;
  border: 0;
  border-radius: 0;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.28;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  touch-action: manipulation;
}

.select-option:hover,
.select-option:focus-visible {
  color: #050505;
  background: rgba(255, 255, 255, 0.82);
  outline: 0;
}

.select-option.is-selected {
  color: #050505;
  background: #f1f1f1;
  font-weight: 500;
}

.select-empty {
  margin: 0;
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.text-input {
  padding-right: 18px;
  font-size: 16px;
  text-transform: none;
}

.text-input::placeholder {
  color: #92959b;
  opacity: 1;
  text-transform: none;
}

.required-fields-note {
  width: 100%;
  margin: -3px 0 0;
  color: #4f5661;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.terms-control {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  margin: 24px 0 5px;
  color: #050505;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.12;
}

.terms-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.terms-check {
  display: block;
  width: 27px;
  height: 27px;
  border: 1.5px solid #050505;
  border-radius: 5px;
  background: #f1f4f9;
}

.terms-control input:checked + .terms-check {
  background: #dff7e8 url("/static/images/commons/tick.png?v=20260707f") center / 20px 16px no-repeat;
}

.terms-control input:focus-visible + .terms-check {
  outline: 3px solid rgba(47, 143, 243, 0.3);
  outline-offset: 2px;
}

.terms-control a {
  color: #0c6dff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.create-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  min-width: 210px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 18px 20px 16px;
  color: #ffffff;
  background: var(--button-gradient);
  box-shadow: none;
  font: inherit;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  cursor: pointer;
}

.create-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.step-terms {
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.step-terms .step-title-art {
  margin-bottom: 25px;
}

.terms-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  width: 100%;
  border-radius: 24px 24px 0 0;
  padding: 17px 21px max(25px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -7px 28px rgba(56, 116, 180, 0.22);
}

.terms-card h1 {
  margin: 0 0 16px;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 6.4vw, 1.55rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.terms-copy {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 14px;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  scrollbar-color: #8d8d8d transparent;
  scrollbar-width: thin;
}

.terms-copy::-webkit-scrollbar {
  width: 5px;
}

.terms-copy::-webkit-scrollbar-track {
  background: transparent;
}

.terms-copy::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #8d8d8d;
}

.terms-copy section {
  margin: 0 0 18px;
}

.terms-program-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

.terms-copy h2 {
  margin: 0 0 7px;
  color: #070707;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.terms-copy p,
.terms-copy ul {
  margin: 0 0 8px;
}

.terms-copy ul {
  padding-left: 18px;
}

.terms-copy li + li {
  margin-top: 5px;
}

.terms-copy p {
  text-align: left;
}

.terms-continue {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  min-width: 210px;
  min-height: 47px;
  margin-top: 27px;
  border: 0;
  border-radius: 999px;
  padding: 18px 20px 16px;
  color: #ffffff;
  background: var(--button-gradient);
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  cursor: pointer;
}

.avatar-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  transition: opacity 160ms ease;
}

.avatar-choice-modal[hidden] {
  display: none;
}

.avatar-choice-modal.is-open {
  opacity: 1;
}

.avatar-choice-panel {
  position: relative;
  width: var(--flow-width);
  min-height: 100svh;
}

.avatar-modal-close {
  position: absolute;
  top: clamp(151px, 19.4svh, 164px);
  right: clamp(24px, 7.4vw, 32px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1rem, 4.55vw, 1.16rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.avatar-modal-close span {
  margin-right: 1px;
  font-size: 1.35em;
  font-weight: 400;
  line-height: 0.75;
}

.avatar-choice-card {
  position: absolute;
  top: clamp(210px, 25.55svh, 218px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(100% - 56px), 320px);
  border-radius: 21px;
  padding: 55px 17px 39px;
  background: #ffffff;
  color: #2f8ff3;
  text-align: center;
  transform: translateX(-50%);
}

.avatar-modal-people {
  position: absolute;
  top: -38px;
  left: 50%;
  display: grid;
  grid-template-columns: 52px 78px 52px;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 78px;
  transform: translateX(-50%);
}

.avatar-modal-face {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-modal-face-main {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
}

.avatar-modal-face-left,
.avatar-modal-face-right {
  width: 52px;
  height: 52px;
}

.avatar-modal-face-left {
  transform: translateX(12px);
}

.avatar-modal-face-right {
  transform: translateX(-12px);
}

.avatar-choice-card h2 {
  width: 100%;
  margin: 0 0 24px;
  color: #2f8ff3;
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 6.65vw, 1.68rem);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
}

.avatar-choice-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.avatar-choice-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 46px;
  border: 2px solid #2446b8;
  border-radius: 999px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 5.4vw, 1.28rem);
  font-weight: 950;
  line-height: 1.18;
  overflow: hidden;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.avatar-choice-primary {
  border: 0;
  color: #ffffff;
  background: var(--button-gradient);
}

.avatar-choice-secondary {
  color: #030303;
  background: #ffffff;
}

.info-next {
  margin-top: 10px;
}

.flow-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-self: center;
  width: min(78%, 260px);
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.flow-progress li {
  position: relative;
  display: grid;
  place-items: center;
}

.flow-progress li:not(:last-child)::after {
  position: absolute;
  left: calc(50% + 12px);
  width: calc(100% - 24px);
  border-top: 2px dotted #0d56b5;
  content: "";
}

.flow-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 2px solid #0d56b5;
  border-radius: 50%;
  color: #0d56b5;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.flow-progress span.is-active {
  color: #ffffff;
  background: #0d56b5;
}

.step-three {
  display: flex;
  flex-direction: column;
  width: var(--poster-width);
  min-height: 100svh;
  overflow: hidden;
  padding: 42px 11px 0;
}

.step-three .step-title-art {
  margin-bottom: 20px;
}

.photo-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 24px 24px 0 0;
  padding: 13px 18px max(22px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -7px 28px rgba(56, 116, 180, 0.22);
}

.photo-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 100%;
  margin-bottom: 13px;
  font-family: var(--font-display);
}

.photo-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 95px;
  min-height: 25px;
  border-radius: 999px;
  padding: 1px 14px 2px;
  color: #ffffff;
  background: #050505;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.photo-heading h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.42rem, 6.9vw, 1.76rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.photo-preview {
  position: relative;
  width: min(calc(100vw - 61px), 314px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #d7d8d7;
  box-shadow: inset 0 0 0 1px rgba(10, 18, 32, 0.12);
}

.photo-preview img,
.photo-preview video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-preview img.is-placeholder {
  object-position: center;
}

.photo-preview [hidden],
.photo-preview.is-camera-active img {
  display: none !important;
}

.photo-preview.is-camera-active video {
  display: block;
}

.photo-preview img.is-placeholder ~ .crop-grid {
  display: none;
}

.crop-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.crop-grid::before,
.crop-grid::after,
.crop-grid span::before,
.crop-grid span::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.crop-grid::before,
.crop-grid::after {
  top: 0;
  bottom: 0;
  width: 1px;
}

.crop-grid::before {
  left: 33.333%;
}

.crop-grid::after {
  left: 66.666%;
}

.crop-grid span::before,
.crop-grid span::after {
  left: 0;
  right: 0;
  height: 1px;
}

.crop-grid span::before {
  top: 33.333%;
}

.crop-grid span::after {
  top: 66.666%;
}

.camera-status {
  min-height: 0;
  margin: 9px 0 0;
  color: #0d56b5;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.photo-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 27px;
}

.capture-action {
  width: 122px;
}

.photo-action {
  display: grid;
  justify-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  color: #0b111e;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 5.25vw, 1.25rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
}

.photo-action input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 42px;
  color: #5f676f;
}

.upload-icon svg {
  width: 42px;
  height: 42px;
}

.camera-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--button-gradient);
  box-shadow: none;
}

.camera-icon img {
  display: block;
  width: 62px;
  height: 47px;
  object-fit: contain;
}

.photo-card.has-photo .photo-actions {
  display: none;
}

.photo-card.has-photo .photo-preview {
  box-shadow: none;
}

.photo-card.has-photo .crop-grid {
  display: none;
}

.photo-result-actions {
  display: grid;
  justify-items: center;
  gap: 17px;
  width: min(100%, 240px);
  margin-top: 42px;
}

.photo-result-actions[hidden] {
  display: none;
}

.photo-create-video,
.photo-retake {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 5.15vw, 1.28rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.photo-create-video {
  border: 0;
  color: #ffffff;
  background: var(--button-gradient);
  cursor: pointer;
}

.photo-create-video:disabled,
.photo-retake:disabled,
.photo-action:disabled {
  cursor: wait;
  opacity: 0.55;
}

.photo-retake {
  gap: 9px;
  border: 2px solid #2446b8;
  color: #050505;
  background: #ffffff;
  cursor: pointer;
}

.photo-retake-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 15px;
  flex: 0 0 auto;
}

.photo-retake-icon img {
  display: block;
  width: 18px;
  height: auto;
  filter: brightness(0);
}

.photo-progress {
  width: min(78%, 260px);
  margin-top: 24px;
}

.photo-generation-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  padding: 28px;
  color: #050505;
  background: rgba(255, 255, 255, 0.985);
  font-family: var(--font-display);
  text-align: center;
}

.photo-generation-loading[hidden] {
  display: none !important;
}

.photo-generation-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  margin-bottom: 31px;
}

.photo-generation-visual img {
  display: block;
  width: 118px;
  height: 118px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #d7d8d7;
  box-shadow: 0 8px 24px rgba(37, 86, 158, 0.2);
  object-fit: cover;
  object-position: center;
}

.photo-generation-spinner {
  position: absolute;
  inset: 0;
  border: 5px solid rgba(47, 143, 243, 0.2);
  border-top-color: #1015cf;
  border-right-color: #2f8ff3;
  border-radius: 50%;
  animation: photo-generation-spin 1s linear infinite;
}

.photo-generation-loading strong {
  font-size: clamp(1.22rem, 5.8vw, 1.55rem);
  font-weight: 950;
  line-height: 1.12;
}

.photo-generation-loading > span:last-child {
  max-width: 310px;
  margin-top: 11px;
  color: #43506a;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 3.6vw, 0.92rem);
  font-weight: 600;
  line-height: 1.35;
  white-space: pre-line;
}

@keyframes photo-generation-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-generation-spinner,
  .result-verifying-spinner {
    animation: none;
    border-color: rgba(47, 143, 243, 0.45);
    border-top-color: #1015cf;
  }

  .result-confetti-field {
    display: none !important;
    animation: none !important;
  }

  .result-confetti-piece {
    animation: none !important;
  }
}

.page-result main {
  min-height: 100svh;
  background: linear-gradient(115deg, #80b9f8 0%, #e9f8ff 42%, #dbf8f4 100%);
}

.result-verifying {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: var(--poster-width);
  min-height: 100svh;
  padding: 40px 24px;
  color: #050505;
  font-family: var(--font-display);
  text-align: center;
}

.result-verifying[hidden],
.result-step[hidden] {
  display: none !important;
}

.result-verifying-spinner {
  width: 76px;
  height: 76px;
  border: 6px solid rgba(47, 143, 243, 0.2);
  border-top-color: #1015cf;
  border-right-color: #2f8ff3;
  border-radius: 50%;
  animation: photo-generation-spin 1s linear infinite;
}

.result-verifying strong {
  font-size: clamp(1.15rem, 5.5vw, 1.45rem);
  font-weight: 950;
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.result-step {
  position: relative;
  display: flex;
  flex-direction: column;
  width: var(--poster-width);
  min-height: 100svh;
  overflow: hidden;
  padding: 44px 11px 0;
}

.result-confetti-field {
  position: fixed;
  inset: 0;
  z-index: 4;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  contain: strict;
  pointer-events: none;
  user-select: none;
}

.result-confetti-field[hidden] {
  display: none;
}

.result-confetti-piece {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--confetti-width);
  max-width: none;
  height: auto;
  opacity: var(--confetti-opacity);
  pointer-events: none;
  transform-origin: 50% 50%;
  user-select: none;
  will-change: transform;
  animation: result-confetti-burst var(--confetti-duration) linear var(--confetti-delay) both;
}

@keyframes result-confetti-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--confetti-rotate-start)) scale(0.2);
    animation-timing-function: cubic-bezier(0.14, 0.58, 0.36, 0.88);
  }

  6% {
    opacity: var(--confetti-opacity);
  }

  20% {
    opacity: var(--confetti-opacity);
    transform: translate3d(var(--confetti-burst-x), var(--confetti-burst-y), 0) rotate(var(--confetti-rotate-mid)) scale(1);
    animation-timing-function: cubic-bezier(0.18, 0.45, 0.5, 0.94);
  }

  78% {
    opacity: var(--confetti-opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-end-x), var(--confetti-end-y), 0) rotate(var(--confetti-rotate-end)) scale(0.76);
  }
}

.result-hero {
  position: relative;
  z-index: 3;
  text-align: center;
}

.result-hero h1 {
  margin: 0;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 6vw, 1.6rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.result-hero h1 span,
.result-hero h1 strong,
.result-hero h1 em {
  display: block;
  font-style: normal;
}

.result-hero h1 span {
  color: #2f8ff3;
  font-size: clamp(1.68rem, 7.8vw, 2rem);
  line-height: 1;
}

.result-hero h1 strong {
  max-width: 100%;
  margin: 6px auto 0;
  color: #111111;
  font-size: clamp(1.03rem, 5.36vw, 1.38rem);
  line-height: 1.02;
  text-wrap: balance;
  white-space: normal;
}

.result-title-separator {
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin: 0 0.14em;
  background: currentColor;
  vertical-align: -0.08em;
}

.result-hero h1 em {
  color: #050505;
  font-size: clamp(1.43rem, 6.8vw, 1.72rem);
  line-height: 1.02;
}

.result-panel {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 96px;
  border-radius: 24px 24px 0 0;
  padding: 307px 11px max(20px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -7px 28px rgba(56, 116, 180, 0.22);
}

.result-video-preview {
  position: absolute;
  top: -50px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 187px;
  height: 332px;
  overflow: hidden;
  border-radius: 9px;
  background: #ffffff url("/static/images/commons/thumb_1.png?v=20260707f") center / cover no-repeat;
  box-shadow: 0 15px 23px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.result-video {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.result-video-poster {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.result-video::-webkit-media-controls {
  display: none !important;
}

.result-video-preview.is-playing .result-video {
  opacity: 1;
  cursor: pointer;
}

.result-meet-overlay {
  position: absolute;
  top: 23.8%;
  right: 5.7%;
  z-index: 2;
  width: 33.5%;
  color: #050505;
  font-family: var(--font-display);
  opacity: 1;
  text-align: center;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.result-video-preview.has-generated-video .result-meet-overlay {
  opacity: 0;
}

.result-meet-card {
  position: relative;
  width: 100%;
  min-height: 57px;
  margin: 0 auto;
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 6px 4px;
  background: linear-gradient(180deg, #c3c6df 0%, #c7cae3 100%);
  overflow: visible;
}

.result-meet-card:not(.has-avatar) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-meet-card:not(.has-avatar):not(.has-name) {
  min-height: 0;
  aspect-ratio: 133 / 92;
  padding: 6px 4px;
}

.result-meet-card:not(.has-avatar).has-name {
  min-height: 0;
  padding: 11px 4px;
}

.result-meet-card.has-avatar {
  aspect-ratio: 133 / 155;
  padding: calc(28% + 5px) 4px 11px;
}

.result-meet-photo {
  position: absolute;
  top: -16%;
  left: 50%;
  display: block;
  width: 53.4%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: #d9d9d9;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
}

.result-meet-photo[hidden],
.photo-generation-visual img[hidden] {
  display: none;
}

.result-meet-name {
  display: block;
  width: 100%;
  margin: 0 0 5px;
  overflow: hidden;
  color: #050505;
  font-size: 6.3px;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-meet-name[hidden] {
  display: none;
}

.result-meet-divider {
  display: block;
  height: 1px;
  margin: 0 10% 7px;
  border: 0;
  background: linear-gradient(90deg, rgba(113, 147, 208, 0) 0%, rgba(113, 147, 208, 0.82) 28%, #7193d0 50%, rgba(113, 147, 208, 0.82) 72%, rgba(113, 147, 208, 0) 100%);
}

.result-meet-card:not(.has-name) .result-meet-divider {
  margin: 3px 10% 5px;
}

.result-meet-divider[hidden] {
  display: none;
}

.result-meet-retailer {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #050505;
  font-size: 5.7px;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-meet-address {
  display: -webkit-box;
  max-height: 13px;
  margin-top: 0;
  overflow: hidden;
  color: #050505;
  font-family: var(--font-display);
  font-size: 3.8px;
  font-weight: 500;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.result-play-button {
  position: relative;
  z-index: 3;
  display: block;
  width: 112px;
  height: 112px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: url("/static/images/commons/btn-play.png?v=20260707f") center / contain no-repeat;
  cursor: pointer;
}

.result-play-button[hidden] {
  display: none;
}

.result-video-preview.is-playing .result-play-button {
  width: 58px;
  height: 58px;
  background: rgba(5, 7, 10, 0.66);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.24);
  opacity: 0.88;
  pointer-events: auto;
}

.result-video-preview.is-playing .result-play-button::before,
.result-video-preview.is-playing .result-play-button::after {
  position: absolute;
  top: 17px;
  width: 7px;
  height: 24px;
  border-radius: 2px;
  background: #ffffff;
  content: "";
}

.result-video-preview.is-playing .result-play-button::before {
  left: 19px;
}

.result-video-preview.is-playing .result-play-button::after {
  right: 19px;
}

.result-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.result-waiting {
  width: 100%;
  color: #050505;
  font-family: var(--font-display);
  text-align: center;
}

.result-waiting p {
  margin: 0;
  font-size: clamp(0.98rem, 4.55vw, 1.18rem);
  font-weight: 950;
  line-height: 1.18;
  text-wrap: balance;
}

.result-waiting strong {
  color: #2f8ff3;
}

.result-waiting span {
  display: block;
  max-width: 34rem;
  margin-top: 9px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
  white-space: normal;
}

.result-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 14px;
}

.result-actions a,
.result-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  border: 0;
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 4.05vw, 1rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.result-actions button {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.download-mail {
  color: #ffffff;
  background: var(--button-gradient);
  box-shadow: none;
  cursor: pointer;
}

.download-mail[aria-disabled="true"],
.download-mail:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.create-again {
  border: 2px solid #05070a;
  color: #05070a;
  background: #ffffff;
}

.result-disclaimer {
  width: 95%;
  margin: 31px 0 0;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.result-disclaimer p {
  margin: 0;
}

.result-disclaimer p + p {
  margin-top: 8px;
}

@media (max-height: 680px) {
  .step-one {
    padding-top: 28px;
  }

  .step-heading {
    margin-bottom: 5px;
  }

  .phone-slider {
    height: calc(100svh - 76px);
  }

  .phone-card {
    gap: 7px;
    padding: 9px 8px 10px;
  }

  .phone-card-actions {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .round-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.12rem;
  }

  .next-step {
    min-height: 38px;
  }

  .step-dots span {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .step-two {
    padding-top: 34px;
  }

  .terms-card {
    padding-top: 14px;
  }

  .terms-card h1 {
    margin-bottom: 10px;
  }

  .terms-copy section {
    margin-bottom: 12px;
  }

  .terms-continue {
    min-height: 40px;
    margin-top: 13px;
  }

  .info-card {
    gap: 8px;
    padding: 14px 14px 13px;
  }

  .select-trigger,
  .text-input {
    min-height: 43px;
  }

  .select-trigger {
    font-size: 15px;
  }

  .select-icon {
    width: 36px;
    height: 36px;
  }

  .select-option {
    min-height: 42px;
    font-size: 15px;
  }

  .flow-progress {
    margin-top: 3px;
  }

  .flow-progress span {
    width: 25px;
    height: 25px;
    font-size: 0.76rem;
  }

  .step-three {
    padding-top: 34px;
  }

  .step-three .step-title-art {
    margin-bottom: 14px;
  }

  .photo-card {
    padding-top: 12px;
  }

  .photo-heading {
    gap: 3px;
    margin-bottom: 10px;
  }

  .photo-heading span {
    min-height: 23px;
    font-size: 0.9rem;
  }

  .photo-heading h1 {
    font-size: clamp(1.28rem, 6.4vw, 1.58rem);
  }

  .photo-preview {
    width: min(calc(100vw - 76px), 286px);
  }

  .photo-actions {
    margin-top: 19px;
  }

  .camera-icon {
    width: 92px;
    height: 92px;
  }

  .camera-icon img {
    width: 55px;
    height: auto;
  }

  .photo-result-actions {
    gap: 13px;
    margin-top: 30px;
  }

  .photo-create-video,
  .photo-retake {
    min-height: 44px;
  }

  .photo-progress {
    margin-top: 15px;
  }
}

@media (min-width: 480px) {
  .site-header {
    padding: 14px 20px 0;
  }

  .site-nav {
    top: 62px;
    right: 20px;
  }

  .page-step .site-header {
    padding: 10px 12px 0;
  }

  .home-cta {
    width: 307px;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  :root {
    --desktop-header-height: 54px;
  }

  body.page-home {
    background: #ffffff;
  }

  body.page-step {
    background: linear-gradient(115deg, #bedfff 0%, #e8f8ff 48%, #dff8f4 100%);
  }

  .page-home main {
    align-items: stretch;
    min-height: 100svh;
    padding-top: var(--desktop-header-height);
    background: #ffffff;
  }

  .page-step main {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: var(--desktop-header-height);
    overflow: hidden;
    background: linear-gradient(115deg, #bedfff 0%, #e8f8ff 48%, #dff8f4 100%);
  }

  .page-home .site-header,
  .page-step .site-header {
    left: 0;
    justify-content: center;
    width: 100%;
    height: var(--desktop-header-height);
    padding: 0;
    background: #dff6fb;
    pointer-events: auto;
    transform: none;
  }

  .page-home .menu-toggle,
  .page-step .menu-toggle,
  .page-step .site-back {
    display: none;
  }

  .page-home .site-nav,
  .page-step .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(42px, 6vw, 86px);
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .page-home .site-nav a,
  .page-step .site-nav a {
    border-radius: 0;
    padding: 0 0 3px;
    color: #050505;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
  }

  .page-home .site-nav a:hover,
  .page-home .site-nav a:focus-visible,
  .page-home .site-nav a.active,
  .page-step .site-nav a:hover,
  .page-step .site-nav a:focus-visible,
  .page-step .site-nav a.active {
    color: #050505;
    background: transparent;
    outline: 0;
  }

  .page-home .site-nav a.active,
  .page-step .site-nav a.active {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .home-hero {
    width: 100%;
    height: calc(100svh - var(--desktop-header-height));
    min-height: 690px;
    aspect-ratio: auto;
    overflow: hidden;
    background: #ffffff;
  }

  .home-title-art {
    top: clamp(30px, 4.4svh, 36px);
    width: clamp(620px, 45vw, 650px);
    content: url("/static/images/commons/desktop/title.png?v=20260721h");
  }

  .home-actions {
    top: clamp(238px, 32svh, 260px);
    left: 50%;
    right: auto;
    display: flex;
    justify-content: center;
    gap: 23px;
    width: auto;
    transform: translateX(-50%);
  }

  .home-cta {
    min-height: 56px;
    padding: 0 28px;
    font-size: clamp(1.34rem, 1.75vw, 1.58rem);
  }

  .home-cta-primary {
    width: 256px;
    min-width: 0;
  }

  .home-cta-secondary {
    width: 256px;
    min-width: 0;
    border-width: 2px;
  }

  .home-phone-art {
    width: clamp(760px, 60vw, 860px);
    max-width: calc(100vw - 80px);
    content: url("/static/images/commons/desktop/bg.png");
  }

  .home-disclaimer {
    bottom: 9px;
    width: min(980px, 82vw);
    color: #050505;
    font-size: clamp(0.6rem, 0.78vw, 0.72rem);
    font-weight: 500;
    line-height: 1.12;
    text-shadow: none;
  }

  .home-video-modal {
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.68);
  }

  .home-video-panel {
    width: 100vw;
    min-height: 100svh;
    padding: 64px 24px 24px;
  }

  .video-modal-close {
    top: 24px;
    right: 24px;
    font-size: 1.24rem;
  }

  .video-modal-close:focus-visible {
    outline: 0;
  }

  .video-sample-frame {
    width: min(clamp(330px, 24.48vw, 354px), calc(56.25svh - 84px));
  }

  .video-play-button {
    width: 86px;
    height: 86px;
  }

  .step-one {
    align-items: center;
    width: 100%;
    min-height: calc(100svh - var(--desktop-header-height));
    padding: 35px 0 0;
    overflow: visible;
  }

  .step-title-art {
    width: clamp(620px, 45vw, 650px);
    margin: 0 auto 14px;
    content: url("/static/images/commons/desktop/title.png?v=20260721h");
  }

  .create-info-card {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2, 324px);
    grid-auto-rows: min-content;
    align-content: start;
    align-items: center;
    justify-content: center;
    column-gap: 13px;
    row-gap: 12px;
    width: 848px;
    border-radius: 24px 24px 0 0;
    padding: 31px 40px 34px;
    box-shadow: 0 -18px 50px rgba(60, 125, 182, 0.22);
  }

  .create-info-heading {
    grid-column: 1 / -1;
    gap: 9px;
    margin: 0 0 12px;
  }

  .create-info-heading span {
    min-width: 92px;
    min-height: 26px;
    padding: 1px 14px 2px;
    font-size: 1.02rem;
  }

  .create-info-heading h1 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .select-trigger,
  .text-input {
    height: 52px;
    min-height: 52px;
    padding-left: 19px;
    font-size: 0.9rem;
  }

  .select-icon {
    right: 5px;
    width: 44px;
    height: 44px;
  }

  .text-input[name="email"] {
    grid-column: 1 / -1;
  }

  .text-input[name="consultant"] {
    font-size: 0.76rem;
    letter-spacing: -0.02em;
  }

  .required-fields-note {
    grid-column: 1 / -1;
    justify-self: center;
    width: 648px;
    margin: -4px 0 -3px;
    font-size: 0.7rem;
  }

  .terms-control {
    grid-column: 1 / -1;
    justify-self: center;
    width: 610px;
    margin: 8px 0 0;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.74rem;
    line-height: 1.1;
    transform: translateX(24px);
  }

  .create-submit {
    grid-column: 1 / -1;
    justify-self: center;
    width: 211px;
    min-height: 46px;
    margin-top: 0;
    font-size: 1.35rem;
  }

  .step-terms {
    align-items: center;
    width: 100%;
    height: calc(100svh - var(--desktop-header-height));
    min-height: 0;
    padding: 35px 0 0;
    overflow: visible;
  }

  .step-terms .step-title-art {
    width: clamp(620px, 45vw, 650px);
    margin: 0 auto 14px;
    content: url("/static/images/commons/desktop/title.png?v=20260721h");
  }

  .terms-card {
    flex: 1;
    min-height: 0;
    width: 910px;
    border-radius: 24px 24px 0 0;
    padding: 31px 40px 34px;
    box-shadow: 0 -18px 50px rgba(60, 125, 182, 0.22);
  }

  .terms-card h1 {
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1;
  }

  .terms-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .terms-copy h2 {
    font-size: 15px;
    line-height: 1.5;
  }

  .terms-continue {
    width: 232px;
    min-height: 47px;
    margin-top: 24px;
    font-size: 1.34rem;
  }

  .step-three {
    align-items: center;
    width: 100%;
    min-height: calc(100svh - var(--desktop-header-height));
    padding: 35px 0 0;
    overflow: visible;
  }

  .step-three .step-title-art {
    width: clamp(620px, 45vw, 650px);
    margin: 0 auto 14px;
    content: url("/static/images/commons/desktop/title.png?v=20260721h");
  }

  .photo-card {
    flex: 1;
    width: 848px;
    border-radius: 24px 24px 0 0;
    padding: 31px 40px 36px;
    box-shadow: 0 -18px 50px rgba(60, 125, 182, 0.22);
  }

  .photo-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 26px;
  }

  .photo-heading span {
    min-width: 95px;
    min-height: 26px;
    padding: 1px 14px 2px;
    font-size: 1.02rem;
  }

  .photo-heading h1 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .photo-preview {
    width: 240px;
  }

  .photo-actions {
    margin-top: 20px;
  }

  .capture-action {
    width: 122px;
  }

  .photo-action {
    gap: 8px;
    font-size: 1.28rem;
  }

  .photo-result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 480px;
    margin-top: 32px;
  }

  .photo-create-video,
  .photo-retake {
    width: 231px;
    min-height: 46px;
    font-size: 1.32rem;
  }

  .camera-icon {
    width: 106px;
    height: 106px;
  }

  .camera-icon img {
    width: 62px;
    height: 47px;
  }

  .result-verifying {
    width: 100%;
    min-height: calc(100svh - var(--desktop-header-height));
  }

  .result-step {
    align-items: center;
    width: 100%;
    min-height: calc(100svh - var(--desktop-header-height));
    padding: 28px 0 0;
    overflow: visible;
  }

  .result-confetti-field {
    top: var(--desktop-header-height);
    bottom: 0;
    height: calc(100svh - var(--desktop-header-height));
  }

  .page-result main {
    background: linear-gradient(115deg, #80b9f8 0%, #e9f8ff 42%, #dbf8f4 100%);
  }

  .result-hero h1 span {
    font-size: 3.5rem;
    line-height: 1;
  }

  .result-hero h1 strong {
    margin-top: 12px;
    font-size: 2.75rem;
    line-height: 1;
  }

  .result-hero h1 em {
    font-size: 3rem;
    line-height: 1;
  }

  .result-panel {
    flex: 1;
    width: 848px;
    min-height: 500px;
    margin-top: 68px;
    border-radius: 24px 24px 0 0;
    padding: 108px 36px 20px 333px;
    box-shadow: 0 -18px 50px rgba(60, 125, 182, 0.22);
  }

  .result-video-preview {
    top: -20px;
    left: 40px;
    width: 268px;
    height: 476px;
    border-radius: 9px;
    box-shadow: 0 20px 26px rgba(0, 0, 0, 0.24);
    transform: none;
  }

  .result-play-button {
    width: 96px;
    height: 96px;
  }

  .result-details {
    max-width: 455px;
  }

  .result-waiting p {
    font-size: 1.08rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .result-waiting p br {
    display: none;
  }

  .result-waiting span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
  }

  .result-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 224px;
    margin-top: 16px;
  }

  .result-actions a,
  .result-actions button {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    font-size: 1.25rem;
  }

  .result-disclaimer {
    width: 100%;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.3;
  }
}

@media (min-width: 1024px) and (max-height: 850px) {
  .home-title-art {
    width: clamp(560px, 41vw, 600px);
  }

  .home-actions {
    gap: 18px;
  }

  .home-cta {
    min-height: 48px;
    padding: 0 22px;
    font-size: clamp(1.18rem, 1.5vw, 1.36rem);
  }

  .home-cta-primary,
  .home-cta-secondary {
    width: 230px;
  }

  .home-phone-art {
    width: clamp(700px, 52vw, 780px);
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .home-hero {
    box-shadow: 0 0 0 1px rgba(16, 32, 62, 0.08), 0 24px 60px rgba(16, 32, 62, 0.16);
  }
}
