/* [project]/src/app/(frontend)/t/[tenant]/tenant.css [app-client] (css) */
.tn {
  --ink: #0b1114;
  --ink-2: #16222a;
  --ink-3: #22313a;
  --paper: #f2f4f5;
  --surface: #fff;
  --line: #dfe5e8;
  --line-strong: #c6d0d5;
  --text: #0f1a1f;
  --text-2: #3d4d56;
  --muted: #6b7a83;
  --accent: #12a3ae;
  --accent-deep: #0e7c86;
  --accent-ink: #07454a;
  --accent-soft: #e2f4f5;
  --glow: #12a3ae73;
  --ok: #1f9d55;
  --warn: #c77d1a;
  --danger: #c2453a;
  --shadow-1: 0 1px 2px #0b11140f, 0 8px 24px -12px #0b11142e;
  --shadow-2: 0 2px 6px #0b111414, 0 24px 48px -20px #0b111459;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --f-display: "Bricolage Grotesque", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
}

.tn *, .tn :before, .tn :after {
  box-sizing: border-box;
}

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

.tn button {
  font: inherit;
  cursor: pointer;
}

.tn input, .tn select {
  font: inherit;
  color: inherit;
}

.tn :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.tn .mono {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
}

.tn .wrap {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

.tn .hdr {
  z-index: 20;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: #fff;
  border-bottom: 1px solid #ffffff14;
  position: sticky;
  top: 0;
}

.tn .hdr .wrap {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 64px;
  display: flex;
}

.tn .brand {
  font-family: var(--f-display);
  letter-spacing: -.02em;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 700;
  display: flex;
}

.tn .brand .dot {
  background: var(--accent);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px var(--glow);
  border-radius: 50%;
}

.tn .hdr nav {
  color: #ffffffb8;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.tn .hdr nav a:hover {
  color: #fff;
}

.tn .hdr .powered {
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff6;
  font-size: 10.5px;
}

.tn .hero {
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  padding: 72px 0 120px;
  position: relative;
  overflow: hidden;
}

.tn .hero:before {
  content: "";
  z-index: -1;
  background: radial-gradient(60% 50% at 20% 30%, #12a3ae61, #0000 60%), radial-gradient(45% 40% at 85% 20%, #0e7c8647, #0000 60%), linear-gradient(#0d1518 0%, #0b1114 100%);
  height: 140%;
  position: absolute;
  inset: -20% -10% auto;
}

.tn .hero:after {
  content: "";
  z-index: -1;
  opacity: .5;
  pointer-events: none;
  background-image: linear-gradient(#ffffff09 1px, #0000 1px), linear-gradient(90deg, #ffffff09 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, #0000 100%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, #0000 100%);
}

.tn .hero .eyebrow {
  font-family: var(--f-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-size: 11px;
}

.tn .hero h1 {
  font-family: var(--f-display);
  letter-spacing: -.035em;
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
  max-width: 14ch;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: .96;
}

.tn .hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.tn .hero p.lede {
  color: #ffffffb8;
  max-width: 52ch;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
}

.tn .search {
  z-index: 5;
  margin-top: -72px;
  position: relative;
}

.tn .search form {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  grid-template-columns: 1.15fr 1.15fr 1.05fr 1.05fr .55fr auto;
  gap: 0;
  display: grid;
  overflow: hidden;
}

.tn .search .f {
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  display: flex;
}

.tn .search .f:last-of-type {
  border-right: 0;
}

.tn .search label {
  font-family: var(--f-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 10px;
}

.tn .search select, .tn .search input {
  width: 100%;
  color: var(--text);
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}

.tn .search input[type="datetime-local"] {
  font-family: var(--f-mono);
  letter-spacing: -.02em;
  font-size: 13px;
  font-weight: 500;
}

.tn .search .go {
  background: var(--ink);
  color: #fff;
  border: 0;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s;
  display: flex;
}

.tn .search .go:hover {
  background: var(--accent-deep);
}

.tn .search .go svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 960px) {
  .tn .search form {
    grid-template-columns: 1fr 1fr;
  }

  .tn .search .f {
    border-bottom: 1px solid var(--line);
  }

  .tn .search .f:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .tn .search .go {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 18px;
  }
}

.tn section.block {
  padding: 72px 0;
}

.tn .sec-head {
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}

.tn h2 {
  font-family: var(--f-display);
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
}

.tn .sec-head p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0;
  font-size: 15px;
}

.tn .fleet {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  display: grid;
}

.tn .car {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
  overflow: hidden;
}

.tn .car:hover {
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.tn .car.off {
  opacity: .55;
}

.tn .car .art {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #16222a, #0b1114);
  position: relative;
  overflow: hidden;
}

.tn .car .art img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.tn .car .art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tn .car .tag {
  font-family: var(--f-mono);
  letter-spacing: .12em;
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #ffffff24;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 10.5px;
  position: absolute;
  top: 14px;
  left: 14px;
}

.tn .car .avail {
  font-family: var(--f-mono);
  letter-spacing: .06em;
  color: #fff;
  background: #1f9d55d9;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 10.5px;
  position: absolute;
  top: 14px;
  right: 14px;
}

.tn .car .avail.few {
  background: #c77d1ae6;
}

.tn .car .avail.none {
  background: #c2453ad9;
}

.tn .car .body {
  flex-direction: column;
  flex: 1;
  gap: 14px;
  padding: 18px 20px 20px;
  display: flex;
}

.tn .car h3 {
  font-family: var(--f-display);
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.tn .car .desc {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.tn .specs {
  color: var(--text-2);
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.tn .specs span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.tn .specs svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.tn .car .foot {
  border-top: 1px dashed var(--line);
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
}

.tn .price .big {
  font-family: var(--f-display);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.tn .price .big small {
  font-family: var(--f-body);
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 4px;
  font-size: .85rem;
  font-weight: 600;
}

.tn .price .sub {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  font-size: 12.5px;
}

.tn .btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background .15s, transform .1s;
  display: inline-flex;
}

.tn .btn:hover {
  background: var(--accent-deep);
}

.tn .btn:active {
  transform: translateY(1px);
}

.tn .btn.accent {
  background: var(--accent);
  color: #fff;
}

.tn .btn.accent:hover {
  background: var(--accent-deep);
}

.tn .btn.ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: none;
}

.tn .btn.ghost:hover {
  background: var(--surface);
}

.tn .btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

.tn .btn.lg {
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
}

.tn .sumbar {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}

.tn .sumbar .wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 32px;
  display: flex;
}

.tn .sumbar .k {
  font-family: var(--f-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff73;
  margin-bottom: 3px;
  font-size: 10px;
  display: block;
}

.tn .sumbar .v {
  font-size: 15px;
  font-weight: 600;
}

.tn .sumbar .items {
  flex-wrap: wrap;
  gap: 8px 36px;
  display: flex;
}

.tn .sumbar a.change {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.tn .book {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 32px;
  padding: 40px 0 80px;
  display: grid;
}

@media (max-width: 900px) {
  .tn .book {
    grid-template-columns: 1fr;
  }
}

.tn .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 24px;
}

.tn .panel + .panel {
  margin-top: 20px;
}

.tn .panel h3 {
  font-family: var(--f-display);
  letter-spacing: -.02em;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
}

.tn .panel h3 .n {
  font-family: var(--f-mono);
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 11px;
  display: inline-flex;
}

.tn .panel .hint {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14px;
}

.tn .plans {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.tn .plan {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  transition: border-color .12s, background .12s;
  display: flex;
}

.tn .plan:hover {
  border-color: var(--line-strong);
}

.tn .plan.on {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.tn .plan b {
  font-size: 15px;
}

.tn .plan span {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.4;
}

.tn .plan .pp {
  font-family: var(--f-mono);
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
}

.tn .extras {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.tn .extra {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  display: grid;
}

.tn .extra.on {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.tn .extra b {
  font-size: 14.5px;
  display: block;
}

.tn .extra small {
  color: var(--muted);
  font-size: 12.5px;
}

.tn .extra .ep {
  font-family: var(--f-mono);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.tn .qty {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.tn .qty button {
  background: var(--surface);
  border: 0;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: 700;
}

.tn .qty button:hover {
  background: var(--paper);
}

.tn .qty output {
  text-align: center;
  min-width: 32px;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
}

.tn .form {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.tn .form .full {
  grid-column: 1 / -1;
}

.tn .field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.tn .field label {
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 10.5px;
}

.tn .field input {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .12s;
}

.tn .field input:focus {
  border-color: var(--accent);
  outline: none;
}

.tn .field input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

@media (max-width: 560px) {
  .tn .form {
    grid-template-columns: 1fr;
  }
}

.tn .summary {
  position: sticky;
  top: 84px;
}

.tn .summary .top {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 18px;
}

.tn .summary .top .k {
  font-family: var(--f-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 10px;
}

.tn .summary .top h4 {
  font-family: var(--f-display);
  letter-spacing: -.02em;
  margin: 4px 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.tn .summary .dates {
  color: var(--text-2);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  display: grid;
}

.tn .summary .dates b {
  color: var(--text);
  font-weight: 600;
  display: block;
}

.tn .lines {
  flex-direction: column;
  gap: 9px;
  padding: 14px 24px;
  font-size: 14px;
  display: flex;
}

.tn .lines .l {
  justify-content: space-between;
  gap: 12px;
  display: flex;
}

.tn .lines .l span:last-child {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tn .lines .l.k-discount span {
  color: var(--ok);
}

.tn .lines .l.k-tax {
  color: var(--muted);
}

.tn .total {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 24px;
  display: flex;
}

.tn .total .k {
  font-weight: 700;
}

.tn .total .v {
  font-family: var(--f-display);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: 1.9rem;
  font-weight: 800;
}

.tn .total .v small {
  font-family: var(--f-body);
  color: var(--muted);
  margin-left: 4px;
  font-size: .9rem;
  font-weight: 600;
}

.tn .deposit {
  color: var(--text-2);
  background: var(--paper);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 12px 24px 20px;
  font-size: 13px;
  line-height: 1.5;
}

.tn .deposit b {
  color: var(--text);
}

.tn .deposit svg {
  vertical-align: -3px;
  width: 15px;
  height: 15px;
  color: var(--accent-deep);
  margin-right: 4px;
}

.tn .summary .cta {
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 22px;
  display: flex;
}

.tn .summary .cta .btn {
  width: 100%;
}

.tn .summary .cta small {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.tn .err {
  color: #7a2018;
  background: #fdecea;
  border: 1px solid #f3c4bf;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.tn .done {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 32px;
  padding: 64px 0 96px;
  display: grid;
}

@media (max-width: 900px) {
  .tn .done {
    grid-template-columns: 1fr;
  }
}

.tn .done .ref {
  font-family: var(--f-mono);
  letter-spacing: .02em;
  color: var(--accent-deep);
  margin: 8px 0 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
}

.tn .done h1 {
  font-family: var(--f-display);
  letter-spacing: -.03em;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.tn .done .steps {
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.tn .done .steps li {
  color: var(--text-2);
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 15px;
  display: grid;
}

.tn .done .steps li b {
  color: var(--text);
  display: block;
}

.tn .done .steps .i {
  background: var(--accent-soft);
  width: 28px;
  height: 28px;
  color: var(--accent-deep);
  font-family: var(--f-mono);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: inline-flex;
}

.tn .kv {
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: 18px 24px;
  font-size: 14px;
  display: grid;
}

.tn .kv dt {
  color: var(--muted);
}

.tn .kv dd {
  margin: 0;
  font-weight: 600;
}

.tn footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0 40px;
  font-size: 13px;
}

.tn footer .wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  display: flex;
}

.tn footer .powered {
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 10.5px;
}

.tn .empty {
  text-align: center;
  color: var(--muted);
  padding: 64px 24px;
}

.tn .empty h3 {
  font-family: var(--f-display);
  color: var(--text);
  margin: 0 0 8px;
  font-size: 1.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .tn * {
    transition: none !important;
  }
}

/*# sourceMappingURL=src_app_%28frontend%29_t_%5Btenant%5D_tenant_0o20bnk.css.map*/