@charset "UTF-8";
/* --------------------------------------------------------------------------
   GRID
   -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 12pt;
  color: #333 !important;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.page {
  background-colour: black;
}

div {
  box-sizing: border-box;
}

p {
  margin: 0;
}

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

svg.fill-white {
  fill: white;
}

.border-under {
  border-bottom: 1px solid #957da6;
}

.display-none {
  display: none;
}

.pt-2 {
  padding-top: 2rem;
}

.font-red {
  color: red;
}

.link:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.span-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sm\:text-center {
    text-align: center;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "League Gothic", serif;
}
h1 .textblock, .h1 .textblock, h2 .textblock, .h2 .textblock, h3 .textblock, .h3 .textblock, h4 .textblock, .h4 .textblock {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
h1 .textblock-concise, .h1 .textblock-concise, h2 .textblock-concise, .h2 .textblock-concise, h3 .textblock-concise, .h3 .textblock-concise, h4 .textblock-concise, .h4 .textblock-concise {
  margin-top: 0.25em;
  margin-bottom: 0.5em;
}

.fancy-title {
  font-family: "League Gothic", serif;
  font-size: 1.5em;
  font-weight: 800;
}

.fancy-body {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  font-size: 1.1em;
}

.small-print {
  font-size: 0.8em;
}

.text-error {
  color: #a42c2c;
}

.text-base {
  font-size: 1em;
}

.body-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.3em;
}

h1, .h1 {
  font-size: 20pt;
  font-weight: 400;
}

.para {
  margin: 25px 0;
}
.para.lite {
  font-size: 0.8em;
}

.emphasis {
  font-weight: bold;
}

.padded {
  padding: 25px;
}

.space, .sp-1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.space-2, .sp-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.link:hover {
  text-decoration: underline;
}

.text-white {
  color: white;
}

.text-primary {
  color: #957da6;
}

.text-2xl {
  font-size: 5em;
}

.text-centered {
  text-align: center;
}

div {
  box-sizing: border-box;
}

.inner {
  max-width: 85.3771344284rem;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.gap {
  gap: 10px;
}

.box {
  display: inline-block;
}

.row {
  display: flex;
}

.flex-row {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-box, .flex {
  display: flex;
}
.flex-box.justify, .flex.justify {
  justify-content: space-between;
}
.flex-box.wrap, .flex.wrap {
  flex-wrap: wrap;
}
.flex-box .flex-grow, .flex .flex-grow {
  flex-grow: 2;
}
.flex-box.vertical-center, .flex.vertical-center {
  justify-content: center;
}
.flex-box.align-base, .flex.align-base {
  align-items: baseline;
}
.flex-box.flex-col, .flex.flex-col {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .flex-box, .flex {
    justify-content: space-between;
  }
  .flex-box.mobile-col, .flex.mobile-col {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .flex-box, .flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .desktop-flex {
    display: flex;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-gap {
  gap: 5px;
}

.space-around {
  justify-content: space-around;
}

.flex-left {
  justify-content: flex-start;
}

.flex-inline {
  display: inline-flex;
}

.flex-vert {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box {
  position: relative;
  display: inline-block;
}
.box .inner.bottom {
  position: absolute;
  bottom: 0;
}

.text-section {
  margin: 32px 0;
}

.width-25 {
  width: 25%;
}

.width-33 {
  width: 33%;
}

.width-50 {
  width: 50%;
}

.width-66 {
  width: 66%;
}

.width-75 {
  width: 75%;
}

.width-100 {
  width: 100%;
}

.leading {
  margin-top: 1em;
  margin-bottom: 1em;
}

@media screen and (min-width: 769px) {
  .leading {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .leading-2 {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
.page {
  min-height: calc(100vh - 150px);
}

.width-200 {
  width: 200px;
}

.width-250 {
  width: 250px;
}

.max-250 {
  max-width: 250px;
}

.absolute {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .sm\:flex-col {
    display: flex;
    flex-direction: column;
  }
  .sm\:relative {
    position: relative;
  }
  .sm\:pt-20 {
    padding-top: 20px;
  }
}
.relative {
  position: relative;
}

.min-h-250 {
  min-height: 250px;
}

.m-auto {
  margin: 0 auto;
}

.mx {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-20 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.strike {
  text-decoration: line-through;
}

.red {
  color: red;
}

.pad {
  padding: 1em;
}

.inner-wrapper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 15px;
}

#modal, .modal, .modal-popup {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: calc(100vh - 100px);
  z-index: 1000;
}
#modal.active, .modal.active, .modal-popup.active {
  display: block;
}
#modal .modal-wrapper, .modal .modal-wrapper, .modal-popup .modal-wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

.modal-promome .modal-body {
  width: 800px !important;
  height: 600px !important;
}

.modal-body .standard {
  width: 800px;
  height: 500px;
}

.full-width {
  margin-left: -20px;
  margin-top: -20px;
}

.standard {
  width: 600px;
  height: 400px;
}

.modal-background {
  position: absolute;
  width: 100%;
}

.modal-popup.modal-how-to .modal-body {
  width: 800px;
  height: 600px;
}

.modal .modal-body {
  background: white;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 90vw;
  height: auto;
  border-radius: 25px;
  padding: 20px;
  overflow: hidden;
}
.modal .modal-body.auto {
  height: auto;
}
.modal .modal-body .modal-header {
  position: absolute;
  width: calc(100% - 44px);
  pointer-events: none;
}
.modal .modal-body .modal-header .close-icon {
  float: right;
  padding: 10px;
  cursor: pointer;
  pointer-events: all;
}
.modal .modal-body .modal-content {
  height: 100%;
}
.modal .modal-body .modal-content .flex-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.modal .modal-body .modal-content .flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 769px) {
  #modal {
    height: 100vh;
  }
  .modal .modal-body {
    background: white;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 60%;
    height: auto;
    border-radius: 25px;
    padding: 20px;
  }
}
.black {
  background: black;
  color: white;
}

.silver {
  background: #eee;
}

.headline {
  font-family: "League Gothic", serif;
  font-size: 2em;
  margin-top: 2em;
  text-transform: uppercase;
}
.headline .title-prefix {
  color: white;
  font-size: 0.8em;
  line-height: 0.8em;
  padding-bottom: 2px;
}
.headline .title {
  font-size: 1em;
  line-height: 0.8em;
  padding-bottom: 2px;
}
.headline .title-challenge {
  font-size: 1.8em;
  line-height: 0.8em;
}

.drop {
  filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.9));
}

.drop-dark {
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.9));
}

.width-500 {
  width: 500px !important;
  max-width: 100vw;
}

.font-poster {
  font-family: "League Gothic", serif;
}

.text-5xl {
  font-size: 5em;
  line-height: 5em;
}

.text-italic {
  font-style: italic;
}

.text-5xl {
  font-size: 4em !important;
  line-height: 1em !important;
}

.text-black {
  color: black;
}

.big-and-loud {
  font-family: "Staatliches", sans-serif;
  font-weight: 800;
  font-size: 40pt;
  line-height: 52pt;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  background: rgb(3, 18, 22);
  background: linear-gradient(60deg, rgb(9, 62, 65) 0%, rgb(23, 80, 96) 29%, rgb(37, 133, 161) 64%, rgb(24, 68, 84) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

@media screen and (min-width: 769px) {
  .big-and-loud {
    font-size: 50pt;
    line-height: 52pt;
    width: 66%;
  }
}
.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.drop-shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.suffix-link {
  position: absolute;
  top: 10px;
  right: 10px;
}

.link:hover {
  text-decoration: underline;
}

.inner-padding {
  padding: 25px;
}

.page .inner {
  max-width: 1366px;
  margin: 0 auto;
}
.page .inner-page {
  max-width: 1366px;
  margin: 0 auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.centre-boxed {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.padded-box {
  padding: 20px;
}

.pad {
  padding: 1em;
}

.min500 {
  min-height: 500px;
}

.row-spacer {
  min-height: 64px;
}

.mt {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.py-2 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.text-small {
  font-size: 0.8em;
}

.text-h3 {
  font-family: "League Gothic", serif;
  font-size: 1.6em;
  font-weight: bold;
}

.text-h4 {
  font-family: "League Gothic", serif;
  font-size: 1.2em;
  font-weight: bold;
}

.w-80p {
  width: 80%;
}

.auto {
  margin: 0 auto;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.fill-blue .svg {
  fill: #957da6;
}

.w-50 {
  width: 50%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex-middle {
  align-items: center;
}

.large {
  font-size: 1.2em;
}

.pad-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-message {
  color: red;
  font-weight: bold;
  padding: 5px;
  background-color: #fdd2be;
}

.border-horizontal {
  border-top: 1px solid #bdbbbb;
  border-bottom: 1px solid #bdbbbb;
}

@media screen and (max-width: 768px) {
  .page .outer-margin {
    margin: 20px 0;
  }
  .page .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page .inner-page {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .page .outer-margin {
    margin: 20px;
  }
  .page .inner {
    padding-left: 50px;
    padding-right: 50px;
  }
  .page .inner-page {
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.rot5 {
  margin: 20px;
  transform: rotate(2deg);
}

.rotn5 {
  margin: 20px;
  transform: rotate(-2deg);
}

.shadow {
  -moz-box-shadow: 10px 10px 50px 0px rgba(153, 153, 153, 0.52);
  box-shadow: 10px 10px 50px 0px rgba(153, 153, 153, 0.52);
}

.padding {
  padding: 10px;
}

.bold {
  font-weight: 800;
}

.larger {
  font-size: 1.5em;
}

.size-x3 {
  font-size: 3em;
}

.auto {
  margin: auto;
}

.my-4 {
  margin-top: 4em;
  margin-bottom: 4em;
}

.btn {
  padding: 1em 2em;
  border-radius: 1em;
  cursor: pointer;
  transition: color 100ms, background-color 200ms;
}
.btn:hover {
  background-color: #957da6;
  color: white;
}

btn--primary {
  background-color: #957da6;
  color: white;
  border: none;
}

.form-field {
  margin-top: 1em;
}
.form-field .form-label {
  display: inline-block;
  width: 125px;
}
.form-field .form-input {
  padding: 0.5em 1em;
  border-radius: 0.5em;
  border: 1px solid #e2e8f0;
}

@media screen and (max-width: 400px) {
  .scaled {
    font-size: 0.7em;
  }
}
@media screen and (min-width: 401px) {
  .scaled {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 769px) {
  .scaled {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 1025px) {
  .scaled {
    font-size: 1em;
  }
}
@media screen and (min-width: 1367px) {
  .scaled {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1667px) {
  .scaled {
    font-size: 1.4em;
  }
}

.align-end {
  align-self: flex-end;
}

.flex-center {
  align-items: center;
}

.flex-grow {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 2rem;
}

.hide, .hidden {
  height: 0px !important;
  overflow: hidden;
  margin: 0 !important;
  border: 0 !important;
}

.hide-visible {
  display: none;
}

.w-500 {
  width: 500px;
}

.border {
  border: 1px solid #e2e8f0;
}

.pad-10 {
  padding: 10px;
}

.rounded-10 {
  border-radius: 10px;
}

.grid {
  display: grid;
}

.gap {
  column-gap: 10px;
}

.text-shadow {
  text-shadow: rgb(149, 157, 165) 2px 2px 6px;
}

.justify-center {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .grid-1 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 769px) {
  .grid-1 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.margin {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.margin-2 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.margin-4 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.margin-top {
  margin-top: 0.5em;
}

.margin-top-2 {
  margin-top: 1em;
}

.main-menu {
  display: none;
}

/* ----------------------------------
   Header
   ---------------------------------- */
.admin-page #header {
  background-color: darkred;
}

.site-logo {
  font-family: "League Gothic", serif;
  font-size: 1.4em;
  color: white;
  align-items: center;
  display: flex;
}

#header {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  background: #c45208;
  background: linear-gradient(135deg, #9c3800 0%, #d45c10 60%, #f07820 100%);
  height: 75px;
}
#header.hide-initially {
  display: none;
}
#header .admin-header {
  background-color: darkred;
}
#header .hamburger {
  display: flex;
  align-items: center;
}
#header .header-inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
#header .header-inner .account-name {
  font-size: 1.2em;
  font-weight: bold;
  text-align: right;
}
#header .header-inner .account-links {
  text-align: right;
}
#header .header-inner .logo-wrapper {
  width: 50px;
}
#header .header-inner .title-wrapper {
  display: flex;
}
#header .header-inner .header-right {
  margin-right: 10px;
}
#header .logo-wrapper .logo-badge {
  height: 80%;
  margin-top: 10%;
  margin-left: 10%;
}
#header .logo-wrapper .logo-badge .image {
  height: 100%;
}
#header .title-wrapper {
  color: white;
}
#header .title-wrapper .menu-item {
  margin-top: 16px;
}
#header .title-wrapper .left-menu {
  align-self: flex-end;
}
#header .title-wrapper .right-menu {
  align-self: flex-end;
}
#header .title-wrapper .site-title {
  font-size: 2em;
  font-family: "League Gothic", serif;
  color: white;
  margin-left: 20px;
  margin-right: 20px;
}
#header .title-wrapper .site-title .h1 {
  margin-top: 5px;
  font-size: 3rem;
  line-height: 3rem;
}
#header .title-wrapper .site-title .h2 {
  font-size: 1rem;
  line-height: 1rem;
  margin-top: -5px;
  text-align: center;
}
#header .title-wrapper .small {
  font-size: 0.75em;
}
#header .menu-dropdown {
  overflow: hidden;
  position: absolute;
  top: 76px;
  width: 275px;
  background: white;
  right: -275px;
  transition-duration: 0.25s;
}
#header .menu-dropdown.is-active {
  height: auto;
  right: 0px;
}
#header img {
  vertical-align: bottom !important;
}

.main-menu {
  width: 912px;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------------------
 * Mobile styling
 * ----------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  #header {
    font-size: 14pt;
  }
  #header .title-wrapper .site-title {
    font-size: 2em;
    margin-top: 10px;
    line-height: 1em;
  }
  #header .title-wrapper .site-title .h1 {
    font-size: 1em;
    line-height: 1em;
    margin-top: -10px;
  }
  #header .iconbar .item.item-details {
    display: none;
  }
  .sticky-header #body #body {
    padding: 50px 0 0 0;
    padding-bottom: 0rem; /* Height of the footer */
  }
}
/* -----------------------------------------------------------------------------------------
 * Desktop styling
 * ----------------------------------------------------------------------------------------- */
#footer {
  bottom: 0;
  width: 100%;
  min-height: 64px;
  padding-top: 30px;
  padding-bottom: 100px;
  background-color: #2d2d2d;
  color: #ccc;
}
#footer .social-icon .svg {
  fill: #aaa;
}

.text-footer {
  color: #aaa;
}

.footer-inner .footer-link {
  padding: 3px;
}
.footer-inner .footer-socials {
  bottom: 10px;
}
.footer-inner .row .copyright {
  grow: 1;
}
.cmp-hamburger-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: 20px;
}
.cmp-hamburger-wrapper .cmp-hamburger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 4px;
  background-color: #ffffff;
}
.cmp-hamburger-wrapper .cmp-hamburger::before, .cmp-hamburger-wrapper .cmp-hamburger::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  transition: all 250ms;
}
.cmp-hamburger-wrapper .cmp-hamburger::before {
  margin-top: -10px;
}
.cmp-hamburger-wrapper .cmp-hamburger::after {
  margin-top: 10px;
}
.cmp-hamburger-wrapper .cmp-hamburger.active {
  height: 0;
}
.cmp-hamburger-wrapper .cmp-hamburger.active::before {
  transform: rotate(45deg);
  margin-top: 0;
}
.cmp-hamburger-wrapper .cmp-hamburger.active::after {
  transform: rotate(-45deg);
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #d45c10;
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: #b84d0d;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #555;
  border: 1px solid #ccc;
}
.btn-secondary:hover:not(:disabled) {
  color: #111;
  border-color: #111;
}

.btn-ghost {
  background: none;
  border: none;
  color: #9ca3af;
  padding: 0 4px;
}
.btn-ghost:hover {
  color: #d45c10;
}

.btn-danger {
  background: none;
  color: #999;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.btn-danger:hover:not(:disabled) {
  color: #c0392b;
  border-color: #c0392b;
}

html, body {
  margin: 0;
  background-color: white;
  width: 100%;
  height: 100%;
}

#header {
  z-index: 100;
}

.hidden-header #header {
  display: none;
}

#body {
  z-index: 10;
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: #222;
}

#body {
  overflow: hidden;
  min-height: 80vh;
}

#footer {
  z-index: 100;
}

#aside .aside-wrapper {
  z-index: 900;
  top: 74px;
  width: 100vw;
  height: calc(100vh - 74px);
  position: fixed;
  left: -100vw;
  background-color: rgba(0, 0, 0, 0.5);
}
#aside .aside-wrapper .aside {
  position: fixed;
  width: 350px;
  height: calc(100vh - 74px);
  left: -350px;
  transition: left 500ms;
  background-color: white;
}
#aside .active.aside-wrapper {
  left: 0;
}
#aside .active .aside {
  left: 0;
}

@media screen and (min-width: 769px) {
  .sticky-header #body {
    padding: 75px 0 0 0;
    padding-bottom: 0rem; /* Height of the footer */
  }
  .admin-page #body {
    padding: 122px 0 0 0;
  }
  #header .main-menu {
    display: block;
  }
}
#body-minheight {
  float: left;
  height: 1500px;
}

/* =============================================================================
   Homepage — Coming Soon
   ============================================================================= */
.home-page {
  min-height: 100vh;
  background: #0d1117;
  background: radial-gradient(ellipse at 50% 0%, #1e0900 0%, #0d1117 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.home-inner {
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.home-logo {
  font-family: "League Gothic", serif;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}
.home-logo span {
  color: #f07820;
}

.home-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(212, 92, 16, 0.18);
  border: 1px solid rgba(212, 92, 16, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f07820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.home-heading {
  font-family: "League Gothic", serif;
  font-size: 3.6rem;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 20px;
}

.home-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 420px;
}

@media (max-width: 480px) {
  .home-heading {
    font-size: 2.6rem;
  }
  .home-logo {
    font-size: 2.2rem;
  }
}
/* =============================================================================
   Signup / Onboarding Flow
   ============================================================================= */
.signup-flow {
  min-height: calc(100vh - 75px);
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 20px 60px;
  /* -------------------------------------------------------------------------
     Step progress indicator
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Card
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Form fields
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Checkbox toggle cards (step 2)
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     URL verify inline row (step 2)
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Status states (step 3 validation)
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Stripe card elements
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Checkout order summary
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Placeholder content (steps 4, 5)
     ------------------------------------------------------------------------- */
  /* -------------------------------------------------------------------------
     Mobile
     ------------------------------------------------------------------------- */
}
.signup-flow .signup-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.signup-flow .signup-progress .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.signup-flow .signup-progress .progress-step .step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cccccc;
  color: #aaaaaa;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.signup-flow .signup-progress .progress-step .step-dot.is-active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}
.signup-flow .signup-progress .progress-step .step-dot.is-done {
  background: #555555;
  border-color: #555555;
  color: #ffffff;
}
.signup-flow .signup-progress .progress-step .step-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  white-space: nowrap;
}
.signup-flow .signup-progress .progress-step .step-label.is-active {
  color: #111111;
}
.signup-flow .signup-progress .progress-step .step-label.is-done {
  color: #555555;
}
.signup-flow .signup-progress .progress-line {
  width: 52px;
  height: 2px;
  background: #dddddd;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.signup-flow .signup-progress .progress-line.is-done {
  background: #555555;
}
.signup-flow .signup-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  width: 100%;
  max-width: 820px;
  overflow: hidden;
}
.signup-flow .signup-card .signup-card-header {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  padding: 28px 36px 24px;
}
.signup-flow .signup-card .signup-card-header h2, .signup-flow .signup-card .signup-card-header .h2 {
  margin: 0 0 5px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}
.signup-flow .signup-card .signup-card-header p {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.4;
}
.signup-flow .signup-card .signup-card-body {
  padding: 30px 36px 10px;
}
.signup-flow .signup-card .signup-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px 28px;
}
.signup-flow .signup-card .signup-actions .btn-primary {
  flex: 1;
  padding: 13px 24px;
  background: #555555;
  border-radius: 0;
}
.signup-flow .signup-card .signup-actions .btn-primary:hover:not(:disabled) {
  background: #333333;
}
.signup-flow .signup-card .signup-actions .btn-secondary {
  padding: 13px 20px;
  border-radius: 0;
}
.signup-flow .signup-field {
  margin-bottom: 18px;
}
.signup-flow .signup-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  margin-bottom: 6px;
}
.signup-flow .signup-field input[type=text],
.signup-flow .signup-field input[type=email],
.signup-flow .signup-field input[type=url],
.signup-flow .signup-field input[type=password] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #111111;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.signup-flow .signup-field input[type=text]:focus,
.signup-flow .signup-field input[type=email]:focus,
.signup-flow .signup-field input[type=url]:focus,
.signup-flow .signup-field input[type=password]:focus {
  outline: none;
  border-color: #111111;
}
.signup-flow .signup-field input[type=text]::placeholder,
.signup-flow .signup-field input[type=email]::placeholder,
.signup-flow .signup-field input[type=url]::placeholder,
.signup-flow .signup-field input[type=password]::placeholder {
  color: #cccccc;
}
.signup-flow .signup-field .signup-field-error {
  margin-top: 5px;
  font-size: 0.8rem;
  color: #cc0000;
  min-height: 1em;
}
.signup-flow .signup-field .signup-field-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #888888;
}
.signup-flow .signup-step-error {
  padding: 0 36px 16px;
  font-size: 0.82rem;
  color: #cc0000;
}
.signup-flow .signup-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.signup-flow .signup-toggle-group .signup-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #cccccc;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.signup-flow .signup-toggle-group .signup-toggle:has(input:checked) {
  border-color: #111111;
  background: #f8f8f8;
}
.signup-flow .signup-toggle-group .signup-toggle input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #333333;
  cursor: pointer;
  flex-shrink: 0;
}
.signup-flow .signup-toggle-group .signup-toggle span {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.3;
}
.signup-flow .signup-toggle-group .signup-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.signup-flow .signup-verify-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.signup-flow .signup-verify-row .btn-verify {
  padding: 8px 16px;
  border: 1px solid #555555;
  color: #555555;
  background: transparent;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.signup-flow .signup-verify-row .btn-verify:hover {
  background: #555555;
  color: #ffffff;
}
.signup-flow .signup-verify-row .btn-verify:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.signup-flow .signup-verify-row .verify-ok {
  font-size: 0.82rem;
  color: #16a34a;
}
.signup-flow .signup-verify-row .verify-err {
  font-size: 0.82rem;
  color: #cc0000;
}
.signup-flow .signup-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.signup-flow .signup-status.is-loading {
  background: #f4f4f4;
  color: #555555;
}
.signup-flow .signup-status.is-error {
  background: #fff5f5;
  color: #cc0000;
  border: 1px solid #f5c6c6;
}
.signup-flow .signup-status.is-success {
  background: #f5fff7;
  color: #15803d;
  border: 1px solid #c6e8cc;
}
.signup-flow .signup-result-grid {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-flow .signup-result-grid .result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
}
.signup-flow .signup-result-grid .result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.signup-flow .signup-result-grid .result-row dt {
  font-size: 0.8rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.signup-flow .signup-result-grid .result-row dd {
  font-size: 0.92rem;
  color: #111111;
  font-weight: 600;
}
.signup-flow .signup-result-grid .result-row dd.is-positive {
  color: #15803d;
}
.signup-flow .signup-result-grid .result-row dd.is-negative {
  color: #cc0000;
}
.signup-flow .stripe-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  margin-bottom: 6px;
}
.signup-flow .stripe-element-wrap {
  border: 1px solid #aaaaaa;
  padding: 11px 12px;
  background: #ffffff;
  margin-bottom: 18px;
  transition: border-color 0.15s;
}
.signup-flow .stripe-element-wrap.StripeElement--focus {
  outline: none;
  border-color: #111111;
}
.signup-flow .stripe-element-wrap.StripeElement--invalid {
  border-color: #cc0000;
}
.signup-flow .card-row {
  display: flex;
  gap: 14px;
}
.signup-flow .checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
}
.signup-flow .checkout-summary-row:last-child {
  border-bottom: none;
}
.signup-flow .checkout-summary-row .checkout-summary-app {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.signup-flow .checkout-summary-row .checkout-summary-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
}
.signup-flow .checkout-summary-row .checkout-summary-plan {
  font-size: 0.8rem;
  color: #666666;
}
.signup-flow .checkout-summary-row .checkout-summary-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
}
.signup-flow .signup-placeholder {
  text-align: center;
  padding: 24px 0 10px;
  color: #999999;
  font-size: 0.9rem;
  font-style: italic;
}
@media (max-width: 600px) {
  .signup-flow {
    padding: 32px 12px 40px;
  }
  .signup-flow .signup-progress .progress-line {
    width: 28px;
  }
  .signup-flow .signup-progress .step-label {
    display: none;
  }
  .signup-flow .signup-card .signup-card-header {
    padding: 22px 20px 18px;
  }
  .signup-flow .signup-card .signup-card-body {
    padding: 22px 20px 8px;
  }
  .signup-flow .signup-card .signup-actions {
    padding: 14px 20px 22px;
    flex-direction: column;
  }
}

/* =============================================================================
   Login Page
   ============================================================================= */
.login-page {
  min-height: calc(100vh - 75px);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.login-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 960px;
  background: #ffffff;
  border: 1px solid #dddddd;
}

/* ── Form column ─────────────────────────────────────────────────────────── */
.login-form-col {
  flex: 0 0 auto;
  width: 100%;
  max-width: 460px;
  padding: 48px 40px;
  box-sizing: border-box;
  border-right: 1px solid #dddddd;
}

.login-field {
  margin-bottom: 20px;
}
.login-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  margin-bottom: 6px;
}

.login-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #111111;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.login-input:focus {
  outline: none;
  border-color: #111111;
}
.login-input::placeholder {
  color: #cccccc;
}

.login-input-wrap {
  position: relative;
}
.login-input-wrap .form-input,
.login-input-wrap .login-input {
  padding-right: 40px;
}

.login-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #888888;
  line-height: 1;
}
.login-password-toggle:hover {
  color: #333333;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.login-remember input[type=checkbox] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: #444444;
}
.login-remember span {
  font-size: 0.875rem;
  color: #333333;
}

.login-forgot-link {
  font-size: 0.875rem;
  color: #333333;
  text-decoration: none;
}
.login-forgot-link:hover {
  text-decoration: underline;
}

.login-field-error {
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #cc0000;
  min-height: 1em;
}

.login-actions {
  display: flex;
  gap: 12px;
}

.btn-login {
  flex: 1;
  padding: 14px 20px;
  background: #555555;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-login:hover {
  background: #333333;
}
.btn-login.is-loading, .btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-login-secondary {
  flex: 1;
  padding: 14px 20px;
  background: #777777;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-login-secondary:hover {
  background: #555555;
}
.btn-login-secondary.is-loading, .btn-login-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Confirmation state ──────────────────────────────────────────────────── */
.login-sent {
  text-align: center;
  padding: 16px 0 8px;
}
.login-sent .login-sent-icon {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 20px;
}
.login-sent h2, .login-sent .h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px;
}
.login-sent p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 28px;
}
.login-sent p strong {
  color: #111111;
}

.btn-login-resend {
  background: none;
  border: none;
  color: #333333;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.btn-login-resend:hover {
  color: #111111;
}

/* ── Sign up column ──────────────────────────────────────────────────────── */
.login-signup-col {
  flex: 1 1 auto;
  display: none;
}
@media (min-width: 820px) {
  .login-signup-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
  }
}

.login-signup-inner {
  max-width: 320px;
}
.login-signup-inner h2, .login-signup-inner .h2 {
  font-family: "League Gothic", serif;
  font-size: 2.2rem;
  color: #111111;
  margin: 0 0 16px;
  line-height: 1.1;
}
.login-signup-inner p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 32px;
}

.btn-login-signup {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #555555;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-login-signup:hover {
  background: #333333;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 819px) {
  .login-page {
    padding: 28px 16px 40px;
    align-items: flex-start;
  }
  .login-form-col {
    max-width: 100%;
    border-right: none;
    padding: 32px 24px;
  }
  .login-actions {
    flex-direction: column;
  }
}
/* =============================================================================
   Welcome / Onboarding Success Page
   ============================================================================= */
.welcome-page {
  min-height: calc(100vh - 75px);
  background: #0d1117;
  background: radial-gradient(ellipse at 50% 0%, #1e0900 0%, #0d1117 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.welcome-inner {
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.welcome-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.welcome-icon svg {
  width: 100%;
  height: 100%;
}

.welcome-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(212, 92, 16, 0.18);
  border: 1px solid rgba(212, 92, 16, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f07820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.welcome-heading {
  font-family: "League Gothic", serif;
  font-size: 3.2rem;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 18px;
}

.welcome-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 420px;
}

.welcome-actions {
  margin-bottom: 52px;
}

.btn-welcome-primary {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #c45208, #f07820);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-welcome-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  text-decoration: none;
}

.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.welcome-stat {
  flex: 1;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.welcome-stat:last-child {
  border-right: none;
}

.welcome-stat-value {
  display: block;
  font-family: "League Gothic", serif;
  font-size: 2rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.welcome-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 480px) {
  .welcome-heading {
    font-size: 2.4rem;
  }
  .welcome-stats {
    flex-direction: column;
  }
  .welcome-stats .welcome-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .welcome-stats .welcome-stat:last-child {
    border-bottom: none;
  }
}
.application-new-page {
  min-height: calc(100vh - 75px);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.application-new-page .application-new-container {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border: 1px solid #dddddd;
}
.application-new-page .application-new-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid #dddddd;
}
.application-new-page .application-new-header h1, .application-new-page .application-new-header .h1 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}
.application-new-page .application-new-header p {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
}
.application-new-page .application-new-body {
  padding: 28px 36px 8px;
}
.application-new-page .application-new-field {
  margin-bottom: 20px;
}
.application-new-page .application-new-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  margin-bottom: 6px;
}
.application-new-page .application-new-field input[type=text],
.application-new-page .application-new-field input[type=url] {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aaaaaa;
  border-radius: 0;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #111111;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.application-new-page .application-new-field input[type=text]:focus,
.application-new-page .application-new-field input[type=url]:focus {
  outline: none;
  border-color: #111111;
}
.application-new-page .application-new-field input[type=text]::placeholder,
.application-new-page .application-new-field input[type=url]::placeholder {
  color: #cccccc;
}
.application-new-page .application-new-field .field-hint {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #888888;
}
.application-new-page .application-new-errors {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #fff5f5;
  border: 1px solid #f5c6c6;
  color: #cc0000;
  font-size: 0.875rem;
  list-style: none;
}
.application-new-page .application-new-errors li + li {
  margin-top: 4px;
}
.application-new-page .application-new-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px 28px;
}
.application-new-page .application-new-actions .btn-create {
  flex: 1;
  padding: 13px 24px;
  background: #555555;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.application-new-page .application-new-actions .btn-create:hover {
  background: #333333;
}
.application-new-page .application-new-actions .btn-cancel {
  padding: 13px 20px;
  background: transparent;
  color: #555555;
  border: 1px solid #cccccc;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.application-new-page .application-new-actions .btn-cancel:hover {
  border-color: #111111;
  color: #111111;
}
@media (max-width: 600px) {
  .application-new-page {
    padding: 28px 16px 40px;
    align-items: flex-start;
  }
  .application-new-page .application-new-header {
    padding: 22px 20px 18px;
  }
  .application-new-page .application-new-body {
    padding: 22px 20px 8px;
  }
  .application-new-page .application-new-actions {
    padding: 14px 20px 22px;
    flex-direction: column;
  }
}

.application-page {
  background: #f0f2f5;
  min-height: 100vh;
  padding: 40px 20px;
}
.application-page .application-container {
  max-width: 860px;
  margin: 0 auto;
}
.application-page .application-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.application-page .application-name {
  font-family: "League Gothic", serif;
  font-size: 2.4rem;
  color: #222;
  margin: 0 0 8px;
  line-height: 1.1;
}
.application-page .application-url {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  color: #666;
  word-break: break-all;
}
.application-page .application-url a {
  color: #957da6;
  text-decoration: none;
}
.application-page .application-url a:hover {
  text-decoration: underline;
}
.application-page .application-not-found {
  font-family: "Raleway", sans-serif;
  color: #888;
  font-size: 1rem;
  margin-top: 8px;
}

/*# sourceMappingURL=stylesheet.css.map */
