
[data-page='contact'] .page-hero {
  padding-bottom: clamp(84px, 10vw, 140px);
}
.ct-art {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}
.ct-art-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.ct-wave {
  fill: none;
  stroke: rgba(160, 176, 255, 0.3);
  stroke-width: 1.4;
}
.ct-wave.w2 {
  stroke-opacity: 0.16;
}
.ct-route {
  fill: none;
  stroke: rgba(160, 176, 255, 0.22);
  stroke-width: 1.5;
}
.ct-route-flow {
  fill: none;
  stroke: #5eeaff;
  stroke-width: 2;
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  animation: dashflow 3s linear infinite;
}
.ct-node > circle:first-child {
  fill: #0b1140;
  stroke: rgba(160, 176, 255, 0.5);
  stroke-width: 1.4;
}
.ct-node svg {
  color: #7fe3f7;
}
.ct-ring {
  fill: none;
  stroke: #5eeaff;
  stroke-opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: ping 3.6s ease-out infinite;
}
.ct-dest > rect:first-child {
  fill: rgba(10, 16, 52, 0.92);
  stroke: rgba(160, 176, 255, 0.45);
}
.ct-dest-bar {
  fill: rgba(255, 255, 255, 0.06);
}
.ct-dest > circle:not(.ct-pulse) {
  fill: #2b3574;
}
.ct-dest-l {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 3;
  stroke-linecap: round;
}
.ct-pulse {
  fill: none;
  stroke: #5eeaff;
  stroke-width: 1.4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: ct-pulse 7s ease-out infinite;
}
@keyframes ct-pulse {
  0%,
  72% {
    opacity: 0;
    transform: scale(0.4);
  }
  75% {
    opacity: 0.85;
  }
  96%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.ct-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: #b3bfe8;
}
.ct-addr {
  font-size: 10.5px;
  letter-spacing: 0.02em;
  fill: #7fe3f7;
}
.ct-art:not(.is-live) * {
  animation-play-state: paused !important;
}
.ct-sec {
  --ct-r: clamp(28px, 4vw, 64px);
  padding-block: clamp(84px, 10vw, 150px);
  scroll-margin-top: 20px;
  overflow: clip;
}
.ct-cut {
  border-top-left-radius: var(--ct-r);
  border-top-right-radius: var(--ct-r);
  margin-top: calc(var(--ct-r) * -1);
  z-index: 2;
}
.ct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.ct-main {
  min-width: 0;
}
.ct-head h2,
.ct-steps-head h2,
.ct-ex-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  letter-spacing: -0.04em;
}
.ct-lead {
  margin-top: 1.3rem;
  max-width: 52ch;
  color: var(--fg-2);
  font-size: 1.06em;
}
.ct-form {
  display: grid;
  gap: 22px;
  margin-top: 2.4rem;
  padding: clamp(22px, 3.2vw, 42px);
  border-radius: 26px;
  border: 1px solid var(--bd);
  background: #fff;
  box-shadow: 0 40px 80px -50px rgba(20, 24, 120, 0.45);
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ct-field {
  min-width: 0;
}
.ct-field label,
.ct-mods legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--fg);
}
.ct-req {
  margin-left: 4px;
  color: #c02669;
}
.ct-opt {
  margin-left: auto;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--bd-2);
  background: var(--paper);
  color: var(--fg);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ct-field textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: var(--fg-3);
  opacity: 0.85;
}
.ct-field input:focus-visible,
.ct-field select:focus-visible,
.ct-field textarea:focus-visible {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 107, 255, 0.16);
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.ct-field [aria-invalid='true'] {
  border-color: #c02669;
  background: #fff5f9;
}
.ct-err {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #b4235f;
}
.ct-sel {
  position: relative;
}
.ct-sel select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.ct-sel .ct-sel-i {
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  rotate: 90deg;
  pointer-events: none;
  color: var(--fg-3);
}
.ct-mods {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ct-chip {
  position: relative;
}
.ct-chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.ct-chip span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  background: var(--paper);
  font-size: 0.92rem;
  color: var(--fg-2);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ct-chip span::before {
  content: '';
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1.5px solid var(--bd-2);
  background: #fff;
}
.ct-chip span::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid #04061a;
  border-bottom: 1.6px solid #04061a;
  transform: translateY(-75%) rotate(-45deg);
  opacity: 0;
}
.ct-chip input:checked + span {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.ct-chip input:checked + span::before {
  border-color: transparent;
  background: var(--grad);
}
.ct-chip input:checked + span::after {
  opacity: 1;
}
.ct-chip input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .ct-chip:hover span {
    border-color: var(--fg-2);
  }
}
.ct-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.ct-note.is-sending {
  opacity: 0.7;
}
.ct-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(75, 69, 240, 0.22);
  background: rgba(75, 69, 240, 0.06);
  font-size: 0.9rem;
  color: var(--fg-2);
}
.ct-note .ico {
  flex: none;
  margin-top: 1px;
  color: var(--accent);
}
.ct-actions .btn {
  flex: 0 1 auto;
}
.ct-copy[hidden] {
  display: none;
}
.ct-status {
  font-size: 0.93rem;
  line-height: 1.5;
}
.ct-status:empty {
  display: none;
}
.ct-status.is-ok {
  color: #0a7a4f;
}
.ct-status.is-bad {
  color: #b4235f;
}
.ct-nojs {
  display: none;
}
html:not(.js) .ct-nojs {
  display: block;
  margin-top: 2rem;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--bd-2);
  background: var(--card);
}
.ct-nojs h3 {
  font-size: 1.3rem;
}
.ct-nojs p {
  margin: 0.6rem 0 1.2rem;
  color: var(--fg-2);
}
.ct-nojs .ct-nojs-a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.2rem 0 0;
  text-transform: none;
  font-size: 0.86rem;
}
html:not(.js) .ct-mailwin {
  display: none;
}
.ct-aside {
  display: grid;
  gap: 22px;
  min-width: 0;
}
@media (min-width: 1001px) and (min-height: 880px) {
  .ct-aside {
    position: sticky;
    top: 110px;
  }
}
.ct-mailwin {
  --fg: #eaf0ff;
  --fg-2: #aab5dd;
  --fg-3: #7d89bd;
  --bd: rgba(150, 170, 255, 0.16);
  --bd-2: rgba(150, 170, 255, 0.32);
  border-radius: 22px;
  background: var(--ink-900);
  color: var(--fg);
  border: 1px solid rgba(120, 130, 255, 0.3);
  box-shadow: 0 50px 90px -40px rgba(20, 24, 120, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.45);
  overflow: hidden;
}
.ct-mailwin .win-bar span {
  margin-left: 12px;
  color: #8b98cf;
}
.ct-hdr {
  margin: 0;
  padding: 2px 18px;
}
.ct-hdr div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(150, 170, 255, 0.12);
}
.ct-hdr dt {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-top: 3px;
}
.ct-hdr dd {
  margin: 0;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}
.ct-pv {
  margin: 0 0 8px;
  max-height: 320px;
  overflow: auto;
  padding: 16px 18px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  line-height: 1.75;
  color: #cfd8ff;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.ct-pv-hint {
  padding: 0 18px 16px;
  font-size: 0.76rem;
  color: var(--fg-3);
}
.ct-card {
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 22px;
  border: 1px solid var(--bd-2);
  background: var(--card);
}
.ct-card h3 {
  font-size: 1.35rem;
}
.ct-card > p {
  margin-top: 0.6rem;
  color: var(--fg-2);
  font-size: 0.95rem;
}
.ct-card ul {
  display: grid;
  gap: 16px;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--bd);
}
.ct-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ct-card li .ico {
  flex: none;
  margin-top: 18px;
  color: var(--accent);
}
.ct-card li span {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.ct-card small {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ct-card a {
  border-bottom: 1px solid var(--bd-2);
  width: fit-content;
}
@media (max-width: 1000px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .ct-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ct-actions .btn {
    flex: 1 1 100%;
  }
}
.ct-steps {
  background: var(--ink-900);
  color: #eaf0ff;
  padding-block: clamp(96px, 11vw, 160px);
  overflow: clip;
}
.ct-steps .wrap {
  position: relative;
  z-index: 2;
}
.ct-steps .aurora {
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}
.ct-steps-head {
  max-width: 60ch;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.ct-steps-head .ct-lead {
  color: var(--fg-2);
}
.ct-track {
  position: relative;
}
.ct-steps-l {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 56px);
}
.ct-rail {
  position: absolute;
  left: 27px;
  right: 27px;
  top: 27px;
  height: 2px;
  border-radius: 2px;
  background: var(--bd-2);
  overflow: hidden;
}
.ct-rail i {
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform-origin: left;
  animation: ct-rail 12s linear infinite;
}
@keyframes ct-rail {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  85%,
  92% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
.ct-step {
  position: relative;
  padding-top: 0;
  padding-bottom: 46px;
}
.ct-step-n {
  position: absolute;
  right: 0;
  bottom: -18px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--bd-2);
  user-select: none;
}
.ct-step-ico {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  border: 1px solid var(--bd-2);
  background: var(--ink-800);
  color: var(--fg-2);
  isolation: isolate;
}
.ct-step-ico::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 17px;
  background: var(--grad-btn);
  opacity: 0;
}
.ct-step-ico.s1 {
  animation: ct-c 12s infinite;
}
.ct-step-ico.s1::after {
  animation: ct-b1 12s infinite;
}
.ct-step-ico.s2 {
  animation: ct-c2 12s infinite;
}
.ct-step-ico.s2::after {
  animation: ct-b2 12s infinite;
}
.ct-step-ico.s3 {
  animation: ct-c3 12s infinite;
}
.ct-step-ico.s3::after {
  animation: ct-b3 12s infinite;
}
@keyframes ct-c {
  0%,
  92% {
    color: #fff;
  }
  100% {
    color: var(--fg-2);
  }
}
@keyframes ct-c2 {
  0%,
  40% {
    color: var(--fg-2);
  }
  44%,
  92% {
    color: #fff;
  }
  100% {
    color: var(--fg-2);
  }
}
@keyframes ct-c3 {
  0%,
  83% {
    color: var(--fg-2);
  }
  87%,
  92% {
    color: #fff;
  }
  100% {
    color: var(--fg-2);
  }
}
@keyframes ct-b1 {
  0%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ct-b2 {
  0%,
  40% {
    opacity: 0;
  }
  44%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ct-b3 {
  0%,
  83% {
    opacity: 0;
  }
  87%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ct-track:not(.is-live) * {
  animation-play-state: paused !important;
}
.ct-step h3 {
  margin-top: 28px;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ct-step p {
  margin-top: 0.9rem;
  color: var(--fg-2);
  max-width: 38ch;
}
@media (max-width: 860px) {
  .ct-steps-l {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-rail {
    left: 27px;
    right: auto;
    top: 27px;
    bottom: 60px;
    width: 2px;
    height: auto;
  }
  .ct-rail i {
    transform-origin: top;
    animation-name: ct-rail-y;
  }
  .ct-step {
    padding-left: 78px;
  }
  .ct-step-ico {
    position: absolute;
    left: 0;
    top: 0;
  }
  .ct-step h3 {
    margin-top: 0;
    padding-top: 6px;
  }
}
@keyframes ct-rail-y {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  85%,
  92% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.ct-explore {
  padding-block: clamp(84px, 10vw, 140px);
}
.ct-ex-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}
.ct-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--bd-2);
  border-left: 1px solid var(--bd-2);
}
.ct-links li {
  border-right: 1px solid var(--bd-2);
  border-bottom: 1px solid var(--bd-2);
}
.ct-links a {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 18px;
  min-height: 190px;
  padding: 24px 22px 22px;
  transition: background-color 0.25s ease;
}
.ct-links a b {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ct-links a > span:not(.mono) {
  color: var(--fg-2);
  font-size: 0.93rem;
  max-width: 24ch;
}
.ct-links a .mono {
  color: var(--fg-3);
  letter-spacing: 0.14em;
}
.ct-links a .ico {
  position: absolute;
  right: 20px;
  top: 22px;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .ct-links a:hover {
    background: #fff;
  }
  .ct-links a:hover .ico {
    transform: translate(4px, -4px) rotate(-45deg);
  }
}
@media (max-width: 960px) {
  .ct-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .ct-links {
    grid-template-columns: 1fr;
  }
  .ct-links a {
    min-height: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ct-rail i,
  .ct-step-ico,
  .ct-step-ico::after {
    animation: none !important;
  }
  .ct-step-ico::after {
    opacity: 1;
  }
}
