@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/fonts/mont-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Zinovia";
  src: url("/fonts/zinovia.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.product-router {
  background: #fff;
  display: flex;
  min-height: calc(100vh - 86px);
  padding: 72px 0 88px;
}

.product-router__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-router__eyebrow,
.solo-section__eyebrow {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  text-transform: lowercase;
}

.product-router__eyebrow {
  text-transform: none;
}

.product-router__title,
.solo-hero__title,
.solo-section__title {
  color: var(--copy-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.product-router__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 50px;
  white-space: nowrap;
}

.solo-section__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 50px;
}

.product-router__title .decorative,
.solo-section__title .decorative {
  font-size: 42px;
  line-height: 50px;
}

.solo-section__title .decorative {
  font-size: inherit;
  line-height: inherit;
}

.product-router__title .decorative,
.solo-hero__title .decorative,
.solo-section__title .decorative {
  font-family: "Zinovia", "Helvetica", sans-serif;
  font-weight: 400;
}

.product-router__lead {
  color: var(--secondary-copy-color);
  font-size: 20px;
  line-height: 1.45;
  margin: 24px 0 38px;
  max-width: 710px;
}

.product-router__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-router__card {
  background: #222;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(51, 51, 51, 0.14);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-router__card::before {
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  filter: saturate(1.12) contrast(1.02);
  opacity: 0.92;
  position: absolute;
  transition: opacity 180ms ease, transform 300ms ease;
}

.product-router__card::after {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.08) 0%,
    rgba(20, 20, 20, 0.28) 34%,
    rgba(20, 20, 20, 0.82) 72%,
    rgba(20, 20, 20, 0.94) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.product-router__card--office::before {
  background-image: url("/images/router/01.jpg");
  background-position: center;
}

.product-router__card--solo::before {
  background-image: url("/images/router/03.jpg");
  background-position: center;
}

.product-router__card--meeting::before {
  background-image: url("/images/router/02.jpg");
  background-position: center 58%;
}

.product-router__card:hover,
.product-router__card:focus-visible {
  border-color: var(--feature-color);
  box-shadow: 0 16px 42px rgba(240, 103, 36, 0.14);
  outline: none;
  transform: translateY(-4px);
}

.product-router__card:hover::before,
.product-router__card:focus-visible::before {
  opacity: 1;
  transform: scale(1.03);
}

.product-router__index,
.product-router__card h2,
.product-router__card p,
.product-router__action {
  position: relative;
  z-index: 1;
}

.product-router__index {
  align-items: center;
  background: var(--feature-color);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.product-router__card h2 {
  color: #fff;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 34px;
  line-height: 1.05;
  margin: 44px 0 14px;
  min-height: 72px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.product-router__card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 auto;
  min-height: 47px;
  padding-bottom: 24px;
}

.product-router__action {
  align-items: center;
  background: var(--feature-color);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 600;
  justify-content: space-between;
  padding: 11px 15px;
}

.product-router__action::after {
  content: "→";
  font-size: 24px;
}

.ecosystem .scroll-track {
  animation-duration: 56s;
}

.ecosystem .scroll-track .ecosystem-photo {
  height: var(--ecosystem-photo-height);
  object-fit: cover;
  object-position: var(--ecosystem-photo-position, center);
  width: var(--ecosystem-photo-width);
}

.ecosystem-photo--slot-1 {
  --ecosystem-photo-height: 346px;
  --ecosystem-photo-width: 360px;
}

.ecosystem-photo--slot-2 {
  --ecosystem-photo-height: 406px;
  --ecosystem-photo-width: 276px;
}

.ecosystem-photo--slot-3 {
  --ecosystem-photo-height: 333px;
  --ecosystem-photo-width: 413px;
}

.ecosystem-photo--slot-4 {
  --ecosystem-photo-height: 352px;
  --ecosystem-photo-width: 516px;
}

.ecosystem-photo--slot-5 {
  --ecosystem-photo-height: 523px;
  --ecosystem-photo-width: 433px;
}

.ecosystem-photo--slot-6 {
  --ecosystem-photo-height: 377px;
  --ecosystem-photo-width: 512px;
}

.ecosystem-photo--slot-7 {
  --ecosystem-photo-height: 540px;
  --ecosystem-photo-width: 389px;
}

.ecosystem-photo--slot-8 {
  --ecosystem-photo-height: 346px;
  --ecosystem-photo-width: 459px;
}

.ecosystem-photo--slot-9 {
  --ecosystem-photo-height: 514px;
  --ecosystem-photo-width: 332px;
}

.ecosystem-photo--slot-10 {
  --ecosystem-photo-height: 385px;
  --ecosystem-photo-width: 426px;
}

.ecosystem-photo--building {
  --ecosystem-photo-position: 50% 48%;
}

.ecosystem-photo--people {
  --ecosystem-photo-position: 56% 50%;
}

.ecosystem-photo--atrium {
  --ecosystem-photo-position: 50% 52%;
}

#office-start {
  scroll-margin-top: 80px;
}

.solo-page .page-header__intro {
  min-height: 680px;
}

.description__illustration.ekt {
  animation-name: preview-ekt-header;
}

@keyframes preview-ekt-header {
  0%, 10%, 80%, 100% {
    background-image: url("https://func.town/img/town/header/ekt-header-1.jpg");
  }

  15%, 25% {
    background-image: url("/images/solo/header-2.jpg?v=20260721");
  }

  30%, 50% {
    background-image: url("https://func.town/img/town/header/ekt-header-3.jpg");
  }

  55%, 75% {
    background-image: url("/images/solo/header-4.jpg?v=20260721");
  }
}

.solo-page .description__headline.ekt h1 {
  max-width: 780px;
}

@media (min-width: 769px) {
  .solo-page .page-header__curve.ekt {
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: calc(100vw * 290 / 1644);
  }
}

.solo-content {
  background: #fff;
}

.solo-hero-copy__location,
.solo-hero-copy__format,
.solo-hero-copy__included,
.solo-hero-copy__amenities {
  display: block;
}

.solo-hero-copy__format,
.solo-hero-copy__included {
  margin-top: 22px;
}

.solo-hero-copy__location,
.solo-hero-copy__included {
  font-weight: 700;
}

.solo-section {
  padding: 100px 0;
}

@media (min-width: 769px) {
  .solo-page #solo-about {
    margin-top: -190px;
    padding-top: 52px;
    position: relative;
    z-index: 1;
  }
}

.solo-section--soft {
  background: #f8f8f8;
}

.solo-section--orange {
  background: var(--feature-color);
  color: #fff;
}

.solo-section--orange .solo-section__eyebrow,
.solo-section--orange .solo-section__title,
.solo-section--orange .solo-section__copy {
  color: #fff;
}

.solo-section__heading {
  align-items: end;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 52px;
}

.solo-section__copy {
  color: var(--secondary-copy-color);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 470px;
}

.solo-highlight {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
}

.solo-highlight__offer,
.solo-highlight__rules {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 38px;
}

.solo-highlight__offer {
  background: #fbae19;
  border-color: #fbae19;
  color: var(--copy-color);
}

.solo-highlight__offer .button {
  background: var(--feature-color);
  color: #fff;
}

.solo-highlight__offer .button:hover,
.solo-highlight__offer .button:focus-visible {
  background: var(--feature-hover-color);
  color: #fff;
}

.solo-highlight__title {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.solo-highlight__price {
  display: block;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  margin-top: 18px;
}

.solo-highlight__lead {
  font-size: 17px;
  line-height: 1.45;
  margin: 24px 0;
  max-width: 540px;
}

.solo-highlight__included-title {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  margin: 0 0 14px;
}

.solo-highlight__included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solo-highlight__included-list li {
  font-size: 16px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.solo-highlight__included-list li + li {
  margin-top: 8px;
}

.solo-highlight__included-list li::before {
  content: "—";
  left: 0;
  position: absolute;
}

.solo-highlight__note {
  font-size: 15px;
  margin: 24px 0;
}

.solo-highlight__rules h3,
.solo-inout h3,
.solo-faq h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 24px;
}

.solo-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solo-checklist li {
  border-top: 1px solid var(--border-color);
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 0 14px 30px;
  position: relative;
}

.solo-checklist li::before {
  color: var(--feature-color);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.solo-checklist--minus li::before {
  content: "—";
}

.solo-tariff-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solo-tariff {
  --solo-card-border: var(--feature-color);
  --solo-perforation-step: 10.5px;
  --solo-ticket-height: 94px;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 340px;
  padding: 30px;
  position: relative;
}

.solo-tariff::before {
  -webkit-mask: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
  background: #fff;
  border: 1px solid var(--solo-card-border);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  bottom: var(--solo-ticket-height);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  mask: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
}

.solo-tariff::after {
  background: radial-gradient(
    circle at 5.25px 100%,
    transparent 0 3.75px,
    var(--feature-color) 4px 5px,
    transparent 5.25px
  ) 0 0 / var(--solo-perforation-step) 5px repeat-x;
  bottom: var(--solo-ticket-height);
  content: "";
  height: 5px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.solo-tariff--featured {
  box-shadow: 0 12px 38px rgba(240, 103, 36, 0.12);
}

.solo-tariff__tag {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.solo-tariff h3 {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  margin: 28px 0 12px;
}

.solo-tariff__description {
  color: var(--secondary-copy-color);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 0;
}

.solo-tariff__price {
  color: var(--feature-color);
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: auto 0;
}

.solo-tariff__price--weekend {
  font-size: 28px;
  white-space: nowrap;
}

.solo-ticket {
  -webkit-mask: radial-gradient(
    circle at 5.25px 0,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
  align-items: center;
  background: var(--feature-color);
  border-radius: 0 0 19px 19px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: var(--solo-ticket-height);
  justify-content: center;
  margin: 0 -30px -30px;
  overflow: hidden;
  padding: 14px 20px 10px;
  position: relative;
  text-decoration: none;
  transform-origin: 0 0;
  transition: transform 200ms linear, box-shadow 200ms linear;
  width: calc(100% + 60px);
  mask: radial-gradient(
    circle at 5.25px 0,
    transparent 0 4.75px,
    #000 5px
  ) 0 0 / var(--solo-perforation-step) 100% repeat-x;
}

.solo-ticket__label {
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.solo-ticket__barcode {
  background: repeating-linear-gradient(
    90deg,
    #fff 0 4px,
    transparent 4px 7px,
    #fff 7px 9px,
    transparent 9px 12px,
    #fff 12px 13px,
    transparent 13px 16px
  );
  display: block;
  height: 25px;
  margin-top: 12px;
  width: 64%;
}

.solo-ticket:hover,
.solo-ticket:focus-visible {
  box-shadow: 0 14px 24px rgba(240, 103, 36, 0.22);
  color: #fff;
  transform: rotate(3deg) translateY(2px);
}

.solo-ticket:focus-visible {
  outline: 3px solid #333;
  outline-offset: 4px;
}

.solo-ticket:active {
  transform: rotate(1deg) translateY(3px);
}

.solo-schedule-fields {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0 16px;
}

.solo-schedule-fields[hidden] {
  display: none;
}

.tour__form .solo-schedule-field,
.tour__form .solo-schedule-field:nth-of-type(2) {
  margin: 0;
  padding: 0;
}

.tour__form .solo-schedule-field .form__input {
  box-sizing: border-box;
  color: var(--copy-color);
  font-family: "Verdana", "Helvetica", sans-serif;
  font-size: 14px;
  height: 40px;
  line-height: 20px;
  margin: 0;
  min-width: 0;
  padding: 10px 20px;
  width: 100%;
}

@media (min-width: 577px) {
  .solo-page .new-popup__background {
    height: 410px;
  }

  .solo-page .new-popup__content#thank-you-content {
    height: 410px;
  }
}

.solo-inout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.solo-inout > article {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 34px;
}

.solo-photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.solo-photo-grid figure {
  margin: 0;
}

.solo-photo-grid img {
  border-radius: 20px;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.solo-photo-grid figcaption {
  color: var(--secondary-copy-color);
  font-size: 14px;
  margin-top: 12px;
}

.solo-faq {
  display: grid;
  gap: 0 60px;
  grid-template-columns: 1fr 1fr;
}

.solo-faq details {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}

.solo-faq summary {
  cursor: pointer;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.solo-faq details p {
  color: var(--secondary-copy-color);
  line-height: 1.5;
  margin: 16px 0 0;
}

.solo-crosslinks {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
}

.solo-crosslinks a {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  color: var(--copy-color);
  display: flex;
  font-family: "Mont", "Helvetica", sans-serif;
  font-size: 24px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 120px;
  padding: 28px;
}

.solo-crosslinks a::after {
  color: var(--feature-color);
  content: "→";
  font-size: 30px;
}

@media (max-width: 1024px) {
  .product-router__grid,
  .solo-tariff-grid {
    grid-template-columns: 1fr;
  }

  .product-router__card {
    min-height: 250px;
  }

  .solo-highlight,
  .solo-section__heading {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .solo-tariff {
    min-height: 290px;
  }
}

@media (max-width: 768px) {
  .product-router {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .product-router__title,
  .solo-section__title {
    font-size: 24px;
    line-height: 34px;
  }

  .product-router__title .decorative,
  .solo-section__title .decorative {
    font-size: 27px;
    line-height: 34px;
  }

  .solo-section__title .decorative {
    font-size: inherit;
    line-height: inherit;
  }

  .product-router__lead,
.solo-section__copy {
    font-size: 17px;
  }

  .product-router__card {
    min-height: 230px;
    padding: 24px;
  }

  .solo-section {
    padding: 70px 0;
  }

  .solo-ticket {
    margin: 0 -24px -24px;
    width: calc(100% + 48px);
  }

  .solo-tariff__price {
    padding: 10px 0;
  }

  .solo-tariff {
    --solo-ticket-height: 90px;
  }

  .solo-schedule-fields {
    grid-template-columns: 1fr;
  }

  .solo-section__heading {
    display: flex;
    gap: 24px;
  }

  .solo-highlight__offer,
  .solo-highlight__rules,
  .solo-tariff,
  .solo-inout > article {
    padding: 24px;
  }

  .solo-highlight__price {
    font-size: 58px;
  }

  .solo-inout,
  .solo-photo-grid,
  .solo-faq,
  .solo-crosslinks {
    grid-template-columns: 1fr;
  }

  .solo-photo-grid img {
    height: 300px;
  }
}

.solo-section__aside {
  max-width: 470px;
}

.solo-section__office-copy {
  color: var(--copy-color);
  font-size: 18px;
  margin: 22px 0 12px;
}

.solo-section__office-button {
  display: inline-flex;
  text-decoration: none;
}

@media (max-width: 576px) {
  .product-router__title,
  .solo-section__title {
    font-size: 20px;
    line-height: 28px;
  }

  .product-router__title .decorative,
  .solo-section__title .decorative {
    font-size: 22px;
    line-height: 28px;
  }

  .solo-section__title .decorative {
    font-size: inherit;
    line-height: inherit;
  }
}

/* Office-page feature cards: keep photography sharp until its description is requested. */
.features__card.ekt .features__card--top img {
  filter: none !important;
  transition: filter 0.3s ease;
}

.product-router[hidden] {
  display: none !important;
}

@media (min-width: 769px) {
  .workspaces > .section__headline .headline {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  #new-popup__headline {
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}

@media (max-width: 576px) {
  .new-price {
    height: 725px;
  }

  .new-price__content {
    min-height: 591px;
  }

  .new-price__description {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-router__card,
  .product-router__card::before {
    transition: none;
  }
}
