/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}

/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer properties;
:root, :host {
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
  --color-red-600: oklch(57.7% 0.245 27.325);
  --color-orange-500: oklch(70.5% 0.213 47.604);
  --color-amber-100: oklch(96.2% 0.059 95.617);
  --color-amber-200: oklch(92.4% 0.12 95.746);
  --color-amber-300: oklch(87.9% 0.169 91.605);
  --color-amber-400: oklch(82.8% 0.189 84.429);
  --color-amber-500: oklch(76.9% 0.188 70.08);
  --color-emerald-100: oklch(95% 0.052 163.051);
  --color-emerald-200: oklch(90.5% 0.093 164.15);
  --color-emerald-300: oklch(84.5% 0.143 164.978);
  --color-emerald-400: oklch(76.5% 0.177 163.223);
  --color-emerald-500: oklch(69.6% 0.17 162.48);
  --color-emerald-600: oklch(59.6% 0.145 163.225);
  --color-emerald-900: oklch(37.8% 0.077 168.94);
  --color-teal-500: oklch(70.4% 0.14 182.503);
  --color-teal-900: oklch(38.6% 0.063 188.416);
  --color-cyan-300: oklch(86.5% 0.127 207.078);
  --color-cyan-400: oklch(78.9% 0.154 211.53);
  --color-blue-100: oklch(93.2% 0.032 255.585);
  --color-blue-200: oklch(88.2% 0.059 254.128);
  --color-blue-300: oklch(80.9% 0.105 251.813);
  --color-blue-400: oklch(70.7% 0.165 254.624);
  --color-blue-500: oklch(62.3% 0.214 259.815);
  --color-blue-600: oklch(54.6% 0.245 262.881);
  --color-blue-900: oklch(37.9% 0.146 265.522);
  --color-indigo-500: oklch(58.5% 0.233 277.117);
  --color-indigo-600: oklch(51.1% 0.262 276.966);
  --color-indigo-900: oklch(35.9% 0.144 278.697);
  --color-purple-500: oklch(62.7% 0.265 303.9);
  --color-purple-600: oklch(55.8% 0.288 302.321);
  --color-rose-200: oklch(89.2% 0.058 10.001);
  --color-rose-300: oklch(81% 0.117 11.638);
  --color-rose-500: oklch(64.5% 0.246 16.439);
  --color-rose-600: oklch(58.6% 0.253 17.585);
  --color-rose-900: oklch(41% 0.159 10.272);
  --color-slate-100: oklch(96.8% 0.007 247.896);
  --color-slate-200: oklch(92.9% 0.013 255.508);
  --color-slate-300: oklch(86.9% 0.022 252.894);
  --color-slate-400: oklch(70.4% 0.04 256.788);
  --color-slate-500: oklch(55.4% 0.046 257.417);
  --color-slate-600: oklch(44.6% 0.043 257.281);
  --color-gray-100: oklch(96.7% 0.003 264.542);
  --color-gray-200: oklch(92.8% 0.006 264.531);
  --color-gray-300: oklch(87.2% 0.01 258.338);
  --color-gray-400: oklch(70.7% 0.022 261.325);
  --color-gray-500: oklch(55.1% 0.027 264.364);
  --color-gray-600: oklch(44.6% 0.03 256.802);
  --color-gray-700: oklch(37.3% 0.034 259.733);
  --color-gray-800: oklch(27.8% 0.033 256.848);
  --color-black: #000;
  --color-white: #fff;
  --spacing: 0.25rem;
  --container-sm: 24rem;
  --container-md: 28rem;
  --container-2xl: 42rem;
  --container-3xl: 48rem;
  --text-xs: 0.75rem;
  --text-xs--line-height: calc(1 / 0.75);
  --text-sm: 0.875rem;
  --text-sm--line-height: calc(1.25 / 0.875);
  --text-base: 1rem;
  --text-base--line-height: calc(1.5 / 1);
  --text-lg: 1.125rem;
  --text-lg--line-height: calc(1.75 / 1.125);
  --text-xl: 1.25rem;
  --text-xl--line-height: calc(1.75 / 1.25);
  --text-2xl: 1.5rem;
  --text-2xl--line-height: calc(2 / 1.5);
  --text-3xl: 1.875rem;
  --text-3xl--line-height: calc(2.25 / 1.875);
  --text-4xl: 2.25rem;
  --text-4xl--line-height: calc(2.5 / 2.25);
  --text-5xl: 3rem;
  --text-5xl--line-height: 1;
  --text-6xl: 3.75rem;
  --text-6xl--line-height: 1;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --tracking-tight: -0.025em;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-relaxed: 1.625;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  --default-transition-duration: 150ms;
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --color-surface: #1e293b;
  --color-border: #334155;
  --color-accent: #60a5fa;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: calc(var(--spacing) * 0);
}
.inset-x-0 {
  inset-inline: calc(var(--spacing) * 0);
}
.inset-y-0 {
  inset-block: calc(var(--spacing) * 0);
}
.top-0 {
  top: calc(var(--spacing) * 0);
}
.top-1\/2 {
  top: calc(1/2 * 100%);
}
.top-4 {
  top: calc(var(--spacing) * 4);
}
.right-3 {
  right: calc(var(--spacing) * 3);
}
.right-4 {
  right: calc(var(--spacing) * 4);
}
.left-3 {
  left: calc(var(--spacing) * 3);
}
.z-10 {
  z-index: 10;
}
.mx-auto {
  margin-inline: auto;
}
.mt-0\.5 {
  margin-top: calc(var(--spacing) * 0.5);
}
.mt-1 {
  margin-top: calc(var(--spacing) * 1);
}
.mt-2 {
  margin-top: calc(var(--spacing) * 2);
}
.mt-3 {
  margin-top: calc(var(--spacing) * 3);
}
.mt-4 {
  margin-top: calc(var(--spacing) * 4);
}
.mt-5 {
  margin-top: calc(var(--spacing) * 5);
}
.mt-6 {
  margin-top: calc(var(--spacing) * 6);
}
.mt-7 {
  margin-top: calc(var(--spacing) * 7);
}
.mt-8 {
  margin-top: calc(var(--spacing) * 8);
}
.mb-1 {
  margin-bottom: calc(var(--spacing) * 1);
}
.mb-2 {
  margin-bottom: calc(var(--spacing) * 2);
}
.mb-3 {
  margin-bottom: calc(var(--spacing) * 3);
}
.mb-4 {
  margin-bottom: calc(var(--spacing) * 4);
}
.mb-5 {
  margin-bottom: calc(var(--spacing) * 5);
}
.mb-6 {
  margin-bottom: calc(var(--spacing) * 6);
}
.mb-8 {
  margin-bottom: calc(var(--spacing) * 8);
}
.ml-auto {
  margin-left: auto;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}
.h-1 {
  height: calc(var(--spacing) * 1);
}
.h-1\.5 {
  height: calc(var(--spacing) * 1.5);
}
.h-2 {
  height: calc(var(--spacing) * 2);
}
.h-2\.5 {
  height: calc(var(--spacing) * 2.5);
}
.h-4 {
  height: calc(var(--spacing) * 4);
}
.h-5 {
  height: calc(var(--spacing) * 5);
}
.h-8 {
  height: calc(var(--spacing) * 8);
}
.h-9 {
  height: calc(var(--spacing) * 9);
}
.h-10 {
  height: calc(var(--spacing) * 10);
}
.h-12 {
  height: calc(var(--spacing) * 12);
}
.h-16 {
  height: calc(var(--spacing) * 16);
}
.h-28 {
  height: calc(var(--spacing) * 28);
}
.h-32 {
  height: calc(var(--spacing) * 32);
}
.h-64 {
  height: calc(var(--spacing) * 64);
}
.h-full {
  height: 100%;
}
.min-h-\[4\.75rem\] {
  min-height: 4.75rem;
}
.min-h-\[18rem\] {
  min-height: 18rem;
}
.min-h-\[90px\] {
  min-height: 90px;
}
.min-h-\[175px\] {
  min-height: 175px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\.5 {
  width: calc(var(--spacing) * 1.5);
}
.w-2 {
  width: calc(var(--spacing) * 2);
}
.w-2\.5 {
  width: calc(var(--spacing) * 2.5);
}
.w-3\/4 {
  width: calc(3/4 * 100%);
}
.w-4 {
  width: calc(var(--spacing) * 4);
}
.w-5 {
  width: calc(var(--spacing) * 5);
}
.w-8 {
  width: calc(var(--spacing) * 8);
}
.w-9 {
  width: calc(var(--spacing) * 9);
}
.w-16 {
  width: calc(var(--spacing) * 16);
}
.w-20 {
  width: calc(var(--spacing) * 20);
}
.w-32 {
  width: calc(var(--spacing) * 32);
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: var(--container-2xl);
}
.max-w-3xl {
  max-width: var(--container-3xl);
}
.max-w-\[11rem\] {
  max-width: 11rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: var(--container-md);
}
.max-w-sm {
  max-width: var(--container-sm);
}
.min-w-0 {
  min-width: calc(var(--spacing) * 0);
}
.min-w-\[8\.5rem\] {
  min-width: 8.5rem;
}
.min-w-\[12rem\] {
  min-width: 12rem;
}
.flex-1 {
  flex: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.-translate-y-1\/2 {
  --tw-translate-y: calc(calc(1/2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.animate-ping {
  animation: var(--animate-ping);
}
.animate-pulse {
  animation: var(--animate-pulse);
}
.cursor-pointer {
  cursor: pointer;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-1\.5 {
  gap: calc(var(--spacing) * 1.5);
}
.gap-2 {
  gap: calc(var(--spacing) * 2);
}
.gap-3 {
  gap: calc(var(--spacing) * 3);
}
.gap-4 {
  gap: calc(var(--spacing) * 4);
}
.gap-5 {
  gap: calc(var(--spacing) * 5);
}
.space-y-2 {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }
}
.space-y-3 {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }
}
.space-y-4 {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }
}
.space-y-5 {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
  }
}
.space-y-8 {
  :where(& > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
  }
}
.gap-x-5 {
  column-gap: calc(var(--spacing) * 5);
}
.gap-y-2 {
  row-gap: calc(var(--spacing) * 2);
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: var(--radius-2xl);
}
.rounded-3xl {
  border-radius: var(--radius-3xl);
}
.rounded-\[2rem\] {
  border-radius: 2rem;
}
.rounded-full {
  border-radius: calc(infinity * 1px);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.border-t {
  border-top-style: var(--tw-border-style);
  border-top-width: 1px;
}
.border-b {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
}
.border-l-2 {
  border-left-style: var(--tw-border-style);
  border-left-width: 2px;
}
.border-accent\/50 {
  border-color: color-mix(in srgb, #60a5fa 50%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-accent) 50%, transparent);
  }
}
.border-amber-400\/15 {
  border-color: color-mix(in srgb, oklch(82.8% 0.189 84.429) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-amber-400) 15%, transparent);
  }
}
.border-amber-500\/25 {
  border-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 25%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-amber-500) 25%, transparent);
  }
}
.border-amber-500\/30 {
  border-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 30%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-amber-500) 30%, transparent);
  }
}
.border-blue-300\/15 {
  border-color: color-mix(in srgb, oklch(80.9% 0.105 251.813) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-blue-300) 15%, transparent);
  }
}
.border-blue-300\/20 {
  border-color: color-mix(in srgb, oklch(80.9% 0.105 251.813) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-blue-300) 20%, transparent);
  }
}
.border-blue-500\/25 {
  border-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 25%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-blue-500) 25%, transparent);
  }
}
.border-blue-500\/30 {
  border-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 30%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-blue-500) 30%, transparent);
  }
}
.border-border {
  border-color: var(--color-border);
}
.border-emerald-300\/15 {
  border-color: color-mix(in srgb, oklch(84.5% 0.143 164.978) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-emerald-300) 15%, transparent);
  }
}
.border-emerald-500\/20 {
  border-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-emerald-500) 20%, transparent);
  }
}
.border-emerald-500\/25 {
  border-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 25%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-emerald-500) 25%, transparent);
  }
}
.border-gray-700 {
  border-color: var(--color-gray-700);
}
.border-gray-800 {
  border-color: var(--color-gray-800);
}
.border-rose-500\/20 {
  border-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-rose-500) 20%, transparent);
  }
}
.border-rose-500\/25 {
  border-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 25%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-rose-500) 25%, transparent);
  }
}
.border-rose-500\/50 {
  border-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 50%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-rose-500) 50%, transparent);
  }
}
.border-white\/5 {
  border-color: color-mix(in srgb, #fff 5%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
  }
}
.border-white\/8 {
  border-color: color-mix(in srgb, #fff 8%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-white) 8%, transparent);
  }
}
.border-white\/10 {
  border-color: color-mix(in srgb, #fff 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
  }
}
.bg-\[\#0F172A\] {
  background-color: #0F172A;
}
.bg-\[\#0b1020\] {
  background-color: #0b1020;
}
.bg-\[\#0f172a\] {
  background-color: #0f172a;
}
.bg-\[\#1e293b\] {
  background-color: #1e293b;
}
.bg-\[\#111827\] {
  background-color: #111827;
}
.bg-amber-400 {
  background-color: var(--color-amber-400);
}
.bg-amber-400\/\[0\.06\] {
  background-color: color-mix(in srgb, oklch(82.8% 0.189 84.429) 6%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-amber-400) 6%, transparent);
  }
}
.bg-amber-500 {
  background-color: var(--color-amber-500);
}
.bg-amber-500\/10 {
  background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
  }
}
.bg-black\/10 {
  background-color: color-mix(in srgb, #000 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
  }
}
.bg-black\/20 {
  background-color: color-mix(in srgb, #000 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
  }
}
.bg-blue-400 {
  background-color: var(--color-blue-400);
}
.bg-blue-400\/10 {
  background-color: color-mix(in srgb, oklch(70.7% 0.165 254.624) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-400) 10%, transparent);
  }
}
.bg-blue-400\/\[0\.055\] {
  background-color: color-mix(in srgb, oklch(70.7% 0.165 254.624) 5.5%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-400) 5.5%, transparent);
  }
}
.bg-blue-500\/5 {
  background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 5%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-500) 5%, transparent);
  }
}
.bg-blue-500\/10 {
  background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-500) 10%, transparent);
  }
}
.bg-blue-500\/15 {
  background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-500) 15%, transparent);
  }
}
.bg-blue-600 {
  background-color: var(--color-blue-600);
}
.bg-blue-600\/15 {
  background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-600) 15%, transparent);
  }
}
.bg-blue-600\/20 {
  background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-blue-600) 20%, transparent);
  }
}
.bg-cyan-400 {
  background-color: var(--color-cyan-400);
}
.bg-emerald-300 {
  background-color: var(--color-emerald-300);
}
.bg-emerald-400 {
  background-color: var(--color-emerald-400);
}
.bg-emerald-400\/\[0\.07\] {
  background-color: color-mix(in srgb, oklch(76.5% 0.177 163.223) 7.000000000000001%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-emerald-400) 7.000000000000001%, transparent);
  }
}
.bg-emerald-500\/10 {
  background-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-emerald-500) 10%, transparent);
  }
}
.bg-emerald-500\/15 {
  background-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-emerald-500) 15%, transparent);
  }
}
.bg-emerald-600 {
  background-color: var(--color-emerald-600);
}
.bg-gray-800\/50 {
  background-color: color-mix(in srgb, oklch(27.8% 0.033 256.848) 50%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-gray-800) 50%, transparent);
  }
}
.bg-indigo-500\/15 {
  background-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-indigo-500) 15%, transparent);
  }
}
.bg-indigo-600\/15 {
  background-color: color-mix(in srgb, oklch(51.1% 0.262 276.966) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-indigo-600) 15%, transparent);
  }
}
.bg-orange-500\/15 {
  background-color: color-mix(in srgb, oklch(70.5% 0.213 47.604) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-orange-500) 15%, transparent);
  }
}
.bg-purple-600\/15 {
  background-color: color-mix(in srgb, oklch(55.8% 0.288 302.321) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-purple-600) 15%, transparent);
  }
}
.bg-red-600\/15 {
  background-color: color-mix(in srgb, oklch(57.7% 0.245 27.325) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-red-600) 15%, transparent);
  }
}
.bg-rose-500\/10 {
  background-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-rose-500) 10%, transparent);
  }
}
.bg-rose-600 {
  background-color: var(--color-rose-600);
}
.bg-rose-600\/15 {
  background-color: color-mix(in srgb, oklch(58.6% 0.253 17.585) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-rose-600) 15%, transparent);
  }
}
.bg-surface {
  background-color: var(--color-surface);
}
.bg-surface\/50 {
  background-color: color-mix(in srgb, #1e293b 50%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-surface) 50%, transparent);
  }
}
.bg-teal-500\/15 {
  background-color: color-mix(in srgb, oklch(70.4% 0.14 182.503) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-teal-500) 15%, transparent);
  }
}
.bg-white\/5 {
  background-color: color-mix(in srgb, #fff 5%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
  }
}
.bg-white\/10 {
  background-color: color-mix(in srgb, #fff 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
  }
}
.bg-white\/\[0\.04\] {
  background-color: color-mix(in srgb, #fff 4%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-white) 4%, transparent);
  }
}
.bg-white\/\[0\.035\] {
  background-color: color-mix(in srgb, #fff 3.5000000000000004%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-white) 3.5000000000000004%, transparent);
  }
}
.bg-white\/\[0\.055\] {
  background-color: color-mix(in srgb, #fff 5.5%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    background-color: color-mix(in oklab, var(--color-white) 5.5%, transparent);
  }
}
.bg-gradient-to-br {
  --tw-gradient-position: to bottom right in oklab;
  background-image: linear-gradient(var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  --tw-gradient-position: to right in oklab;
  background-image: linear-gradient(var(--tw-gradient-stops));
}
.bg-\[radial-gradient\(circle_at_top_left\,rgba\(59\,130\,246\,0\.24\)\,transparent_42\%\)\,radial-gradient\(circle_at_bottom_right\,rgba\(16\,185\,129\,0\.16\)\,transparent_38\%\)\] {
  background-image: radial-gradient(circle at top left,rgba(59,130,246,0.24),transparent 42%),radial-gradient(circle at bottom right,rgba(16,185,129,0.16),transparent 38%);
}
.from-blue-500\/60 {
  --tw-gradient-from: color-mix(in srgb, oklch(62.3% 0.214 259.815) 60%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-from: color-mix(in oklab, var(--color-blue-500) 60%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.from-blue-900\/20 {
  --tw-gradient-from: color-mix(in srgb, oklch(37.9% 0.146 265.522) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-from: color-mix(in oklab, var(--color-blue-900) 20%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.from-emerald-900\/15 {
  --tw-gradient-from: color-mix(in srgb, oklch(37.8% 0.077 168.94) 15%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-from: color-mix(in oklab, var(--color-emerald-900) 15%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.via-emerald-500\/60 {
  --tw-gradient-via: color-mix(in srgb, oklch(69.6% 0.17 162.48) 60%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-via: color-mix(in oklab, var(--color-emerald-500) 60%, transparent);
  }
  --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-via-stops);
}
.to-indigo-900\/20 {
  --tw-gradient-to: color-mix(in srgb, oklch(35.9% 0.144 278.697) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-to: color-mix(in oklab, var(--color-indigo-900) 20%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.to-purple-500\/60 {
  --tw-gradient-to: color-mix(in srgb, oklch(62.7% 0.265 303.9) 60%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-to: color-mix(in oklab, var(--color-purple-500) 60%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.to-teal-900\/10 {
  --tw-gradient-to: color-mix(in srgb, oklch(38.6% 0.063 188.416) 10%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-gradient-to: color-mix(in oklab, var(--color-teal-900) 10%, transparent);
  }
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.p-3 {
  padding: calc(var(--spacing) * 3);
}
.p-4 {
  padding: calc(var(--spacing) * 4);
}
.p-5 {
  padding: calc(var(--spacing) * 5);
}
.p-6 {
  padding: calc(var(--spacing) * 6);
}
.p-8 {
  padding: calc(var(--spacing) * 8);
}
.px-1 {
  padding-inline: calc(var(--spacing) * 1);
}
.px-2 {
  padding-inline: calc(var(--spacing) * 2);
}
.px-2\.5 {
  padding-inline: calc(var(--spacing) * 2.5);
}
.px-3 {
  padding-inline: calc(var(--spacing) * 3);
}
.px-4 {
  padding-inline: calc(var(--spacing) * 4);
}
.py-0\.5 {
  padding-block: calc(var(--spacing) * 0.5);
}
.py-1 {
  padding-block: calc(var(--spacing) * 1);
}
.py-1\.5 {
  padding-block: calc(var(--spacing) * 1.5);
}
.py-2 {
  padding-block: calc(var(--spacing) * 2);
}
.py-2\.5 {
  padding-block: calc(var(--spacing) * 2.5);
}
.py-3 {
  padding-block: calc(var(--spacing) * 3);
}
.py-3\.5 {
  padding-block: calc(var(--spacing) * 3.5);
}
.py-4 {
  padding-block: calc(var(--spacing) * 4);
}
.py-8 {
  padding-block: calc(var(--spacing) * 8);
}
.py-12 {
  padding-block: calc(var(--spacing) * 12);
}
.pt-2 {
  padding-top: calc(var(--spacing) * 2);
}
.pt-4 {
  padding-top: calc(var(--spacing) * 4);
}
.pt-5 {
  padding-top: calc(var(--spacing) * 5);
}
.pt-6 {
  padding-top: calc(var(--spacing) * 6);
}
.pt-8 {
  padding-top: calc(var(--spacing) * 8);
}
.pr-14 {
  padding-right: calc(var(--spacing) * 14);
}
.pb-1\.5 {
  padding-bottom: calc(var(--spacing) * 1.5);
}
.pb-3 {
  padding-bottom: calc(var(--spacing) * 3);
}
.pb-4 {
  padding-bottom: calc(var(--spacing) * 4);
}
.pb-12 {
  padding-bottom: calc(var(--spacing) * 12);
}
.pl-1 {
  padding-left: calc(var(--spacing) * 1);
}
.pl-3 {
  padding-left: calc(var(--spacing) * 3);
}
.pl-10 {
  padding-left: calc(var(--spacing) * 10);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: var(--font-mono);
}
.text-2xl {
  font-size: var(--text-2xl);
  line-height: var(--tw-leading, var(--text-2xl--line-height));
}
.text-3xl {
  font-size: var(--text-3xl);
  line-height: var(--tw-leading, var(--text-3xl--line-height));
}
.text-4xl {
  font-size: var(--text-4xl);
  line-height: var(--tw-leading, var(--text-4xl--line-height));
}
.text-5xl {
  font-size: var(--text-5xl);
  line-height: var(--tw-leading, var(--text-5xl--line-height));
}
.text-base {
  font-size: var(--text-base);
  line-height: var(--tw-leading, var(--text-base--line-height));
}
.text-lg {
  font-size: var(--text-lg);
  line-height: var(--tw-leading, var(--text-lg--line-height));
}
.text-sm {
  font-size: var(--text-sm);
  line-height: var(--tw-leading, var(--text-sm--line-height));
}
.text-xl {
  font-size: var(--text-xl);
  line-height: var(--tw-leading, var(--text-xl--line-height));
}
.text-xs {
  font-size: var(--text-xs);
  line-height: var(--tw-leading, var(--text-xs--line-height));
}
.text-\[9px\] {
  font-size: 9px;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.leading-5 {
  --tw-leading: calc(var(--spacing) * 5);
  line-height: calc(var(--spacing) * 5);
}
.leading-6 {
  --tw-leading: calc(var(--spacing) * 6);
  line-height: calc(var(--spacing) * 6);
}
.leading-\[1\.02\] {
  --tw-leading: 1.02;
  line-height: 1.02;
}
.leading-relaxed {
  --tw-leading: var(--leading-relaxed);
  line-height: var(--leading-relaxed);
}
.leading-snug {
  --tw-leading: var(--leading-snug);
  line-height: var(--leading-snug);
}
.leading-tight {
  --tw-leading: var(--leading-tight);
  line-height: var(--leading-tight);
}
.font-black {
  --tw-font-weight: var(--font-weight-black);
  font-weight: var(--font-weight-black);
}
.font-bold {
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
}
.font-extrabold {
  --tw-font-weight: var(--font-weight-extrabold);
  font-weight: var(--font-weight-extrabold);
}
.font-medium {
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  --tw-font-weight: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
}
.tracking-\[-0\.03em\] {
  --tw-tracking: -0.03em;
  letter-spacing: -0.03em;
}
.tracking-\[-0\.04em\] {
  --tw-tracking: -0.04em;
  letter-spacing: -0.04em;
}
.tracking-\[-0\.05em\] {
  --tw-tracking: -0.05em;
  letter-spacing: -0.05em;
}
.tracking-\[-0\.06em\] {
  --tw-tracking: -0.06em;
  letter-spacing: -0.06em;
}
.tracking-\[-0\.025em\] {
  --tw-tracking: -0.025em;
  letter-spacing: -0.025em;
}
.tracking-\[-0\.045em\] {
  --tw-tracking: -0.045em;
  letter-spacing: -0.045em;
}
.tracking-\[0\.11em\] {
  --tw-tracking: 0.11em;
  letter-spacing: 0.11em;
}
.tracking-\[0\.12em\] {
  --tw-tracking: 0.12em;
  letter-spacing: 0.12em;
}
.tracking-\[0\.14em\] {
  --tw-tracking: 0.14em;
  letter-spacing: 0.14em;
}
.tracking-\[0\.16em\] {
  --tw-tracking: 0.16em;
  letter-spacing: 0.16em;
}
.tracking-\[0\.17em\] {
  --tw-tracking: 0.17em;
  letter-spacing: 0.17em;
}
.tracking-\[0\.18em\] {
  --tw-tracking: 0.18em;
  letter-spacing: 0.18em;
}
.tracking-\[0\.22em\] {
  --tw-tracking: 0.22em;
  letter-spacing: 0.22em;
}
.tracking-tight {
  --tw-tracking: var(--tracking-tight);
  letter-spacing: var(--tracking-tight);
}
.tracking-wide {
  --tw-tracking: var(--tracking-wide);
  letter-spacing: var(--tracking-wide);
}
.tracking-wider {
  --tw-tracking: var(--tracking-wider);
  letter-spacing: var(--tracking-wider);
}
.tracking-widest {
  --tw-tracking: var(--tracking-widest);
  letter-spacing: var(--tracking-widest);
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.text-accent {
  color: var(--color-accent);
}
.text-amber-100\/80 {
  color: color-mix(in srgb, oklch(96.2% 0.059 95.617) 80%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    color: color-mix(in oklab, var(--color-amber-100) 80%, transparent);
  }
}
.text-amber-200 {
  color: var(--color-amber-200);
}
.text-amber-300 {
  color: var(--color-amber-300);
}
.text-amber-400 {
  color: var(--color-amber-400);
}
.text-blue-100 {
  color: var(--color-blue-100);
}
.text-blue-100\/85 {
  color: color-mix(in srgb, oklch(93.2% 0.032 255.585) 85%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    color: color-mix(in oklab, var(--color-blue-100) 85%, transparent);
  }
}
.text-blue-200 {
  color: var(--color-blue-200);
}
.text-blue-200\/80 {
  color: color-mix(in srgb, oklch(88.2% 0.059 254.128) 80%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    color: color-mix(in oklab, var(--color-blue-200) 80%, transparent);
  }
}
.text-blue-300 {
  color: var(--color-blue-300);
}
.text-blue-300\/70 {
  color: color-mix(in srgb, oklch(80.9% 0.105 251.813) 70%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    color: color-mix(in oklab, var(--color-blue-300) 70%, transparent);
  }
}
.text-cyan-300 {
  color: var(--color-cyan-300);
}
.text-emerald-100 {
  color: var(--color-emerald-100);
}
.text-emerald-200 {
  color: var(--color-emerald-200);
}
.text-emerald-300 {
  color: var(--color-emerald-300);
}
.text-emerald-300\/70 {
  color: color-mix(in srgb, oklch(84.5% 0.143 164.978) 70%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    color: color-mix(in oklab, var(--color-emerald-300) 70%, transparent);
  }
}
.text-gray-100 {
  color: var(--color-gray-100);
}
.text-gray-200 {
  color: var(--color-gray-200);
}
.text-gray-300 {
  color: var(--color-gray-300);
}
.text-gray-400 {
  color: var(--color-gray-400);
}
.text-gray-500 {
  color: var(--color-gray-500);
}
.text-gray-600 {
  color: var(--color-gray-600);
}
.text-rose-200 {
  color: var(--color-rose-200);
}
.text-rose-300 {
  color: var(--color-rose-300);
}
.text-slate-100 {
  color: var(--color-slate-100);
}
.text-slate-200 {
  color: var(--color-slate-200);
}
.text-slate-300 {
  color: var(--color-slate-300);
}
.text-slate-400 {
  color: var(--color-slate-400);
}
.text-slate-500 {
  color: var(--color-slate-500);
}
.text-slate-600 {
  color: var(--color-slate-600);
}
.text-white {
  color: var(--color-white);
}
.uppercase {
  text-transform: uppercase;
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
}
.underline {
  text-decoration-line: underline;
}
.decoration-slate-600 {
  text-decoration-color: var(--color-slate-600);
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.placeholder-gray-400 {
  &::placeholder {
    color: var(--color-gray-400);
  }
}
.placeholder-gray-600 {
  &::placeholder {
    color: var(--color-gray-600);
  }
}
.accent-emerald-500 {
  accent-color: var(--color-emerald-500);
}
.opacity-50 {
  opacity: 50%;
}
.opacity-75 {
  opacity: 75%;
}
.opacity-80 {
  opacity: 80%;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-\[0_24px_80px_rgba\(0\,0\,0\,0\.35\)\] {
  --tw-shadow: 0 24px 80px var(--tw-shadow-color, rgba(0,0,0,0.35));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-blue-900\/20 {
  --tw-shadow-color: color-mix(in srgb, oklch(37.9% 0.146 265.522) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-900) 20%, transparent) var(--tw-shadow-alpha), transparent);
  }
}
.shadow-emerald-900\/20 {
  --tw-shadow-color: color-mix(in srgb, oklch(37.8% 0.077 168.94) 20%, transparent);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-emerald-900) 20%, transparent) var(--tw-shadow-alpha), transparent);
  }
}
.transition-all {
  transition-property: all;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-colors {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-transform {
  transition-property: transform, translate, scale, rotate;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.outline-none {
  --tw-outline-style: none;
  outline-style: none;
}
.group-hover\:scale-110 {
  &:is(:where(.group):hover *) {
    @media (hover: hover) {
      --tw-scale-x: 110%;
      --tw-scale-y: 110%;
      --tw-scale-z: 110%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}
.group-hover\:bg-blue-500\/10 {
  &:is(:where(.group):hover *) {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-blue-500) 10%, transparent);
      }
    }
  }
}
.hover\:scale-\[1\.02\] {
  &:hover {
    @media (hover: hover) {
      scale: 1.02;
    }
  }
}
.hover\:border-rose-900\/50 {
  &:hover {
    @media (hover: hover) {
      border-color: color-mix(in srgb, oklch(41% 0.159 10.272) 50%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        border-color: color-mix(in oklab, var(--color-rose-900) 50%, transparent);
      }
    }
  }
}
.hover\:bg-\[\#334155\] {
  &:hover {
    @media (hover: hover) {
      background-color: #334155;
    }
  }
}
.hover\:bg-blue-500 {
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-blue-500);
    }
  }
}
.hover\:bg-blue-500\/20 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 20%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-blue-500) 20%, transparent);
      }
    }
  }
}
.hover\:bg-blue-600\/20 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(54.6% 0.245 262.881) 20%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-blue-600) 20%, transparent);
      }
    }
  }
}
.hover\:bg-emerald-500 {
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-emerald-500);
    }
  }
}
.hover\:bg-emerald-500\/20 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 20%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-emerald-500) 20%, transparent);
      }
    }
  }
}
.hover\:bg-gray-700 {
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-gray-700);
    }
  }
}
.hover\:bg-gray-800 {
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-gray-800);
    }
  }
}
.hover\:bg-rose-500 {
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-rose-500);
    }
  }
}
.hover\:bg-rose-500\/15 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 15%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-rose-500) 15%, transparent);
      }
    }
  }
}
.hover\:bg-rose-900\/20 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, oklch(41% 0.159 10.272) 20%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-rose-900) 20%, transparent);
      }
    }
  }
}
.hover\:bg-white\/10 {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, #fff 10%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
      }
    }
  }
}
.hover\:bg-white\/\[0\.08\] {
  &:hover {
    @media (hover: hover) {
      background-color: color-mix(in srgb, #fff 8%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-white) 8%, transparent);
      }
    }
  }
}
.hover\:text-gray-400 {
  &:hover {
    @media (hover: hover) {
      color: var(--color-gray-400);
    }
  }
}
.hover\:text-white {
  &:hover {
    @media (hover: hover) {
      color: var(--color-white);
    }
  }
}
.focus\:border-blue-500 {
  &:focus {
    border-color: var(--color-blue-500);
  }
}
.focus\:bg-\[\#1e293b\] {
  &:focus {
    background-color: #1e293b;
  }
}
.focus\:outline-none {
  &:focus {
    --tw-outline-style: none;
    outline-style: none;
  }
}
.focus-visible\:ring-2 {
  &:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
}
.focus-visible\:ring-blue-500\/40 {
  &:focus-visible {
    --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 40%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      --tw-ring-color: color-mix(in oklab, var(--color-blue-500) 40%, transparent);
    }
  }
}
.focus-visible\:ring-blue-500\/50 {
  &:focus-visible {
    --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 50%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      --tw-ring-color: color-mix(in oklab, var(--color-blue-500) 50%, transparent);
    }
  }
}
.focus-visible\:ring-emerald-500\/40 {
  &:focus-visible {
    --tw-ring-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 40%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      --tw-ring-color: color-mix(in oklab, var(--color-emerald-500) 40%, transparent);
    }
  }
}
.focus-visible\:ring-rose-500\/40 {
  &:focus-visible {
    --tw-ring-color: color-mix(in srgb, oklch(64.5% 0.246 16.439) 40%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      --tw-ring-color: color-mix(in oklab, var(--color-rose-500) 40%, transparent);
    }
  }
}
.active\:scale-\[0\.98\] {
  &:active {
    scale: 0.98;
  }
}
.disabled\:opacity-50 {
  &:disabled {
    opacity: 50%;
  }
}
.disabled\:opacity-60 {
  &:disabled {
    opacity: 60%;
  }
}
.sm\:block {
  @media (width >= 40rem) {
    display: block;
  }
}
.sm\:inline-flex {
  @media (width >= 40rem) {
    display: inline-flex;
  }
}
.sm\:w-\[140px\] {
  @media (width >= 40rem) {
    width: 140px;
  }
}
.sm\:grid-cols-2 {
  @media (width >= 40rem) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sm\:grid-cols-3 {
  @media (width >= 40rem) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.sm\:grid-cols-\[1fr_auto\] {
  @media (width >= 40rem) {
    grid-template-columns: 1fr auto;
  }
}
.sm\:flex-row {
  @media (width >= 40rem) {
    flex-direction: row;
  }
}
.sm\:items-center {
  @media (width >= 40rem) {
    align-items: center;
  }
}
.sm\:gap-4 {
  @media (width >= 40rem) {
    gap: calc(var(--spacing) * 4);
  }
}
.sm\:pt-7 {
  @media (width >= 40rem) {
    padding-top: calc(var(--spacing) * 7);
  }
}
.sm\:text-2xl {
  @media (width >= 40rem) {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
}
.sm\:text-3xl {
  @media (width >= 40rem) {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
}
.sm\:text-4xl {
  @media (width >= 40rem) {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
}
.sm\:text-5xl {
  @media (width >= 40rem) {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }
}
.sm\:text-6xl {
  @media (width >= 40rem) {
    font-size: var(--text-6xl);
    line-height: var(--tw-leading, var(--text-6xl--line-height));
  }
}
.md\:block {
  @media (width >= 48rem) {
    display: block;
  }
}
.md\:text-4xl {
  @media (width >= 48rem) {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
}
.md\:text-xl {
  @media (width >= 48rem) {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
}
.lg\:max-w-\[12rem\] {
  @media (width >= 64rem) {
    max-width: 12rem;
  }
}
.lg\:grid-cols-\[1fr_auto\] {
  @media (width >= 64rem) {
    grid-template-columns: 1fr auto;
  }
}
.lg\:items-start {
  @media (width >= 64rem) {
    align-items: flex-start;
  }
}
.lg\:justify-end {
  @media (width >= 64rem) {
    justify-content: flex-end;
  }
}
.lg\:text-5xl {
  @media (width >= 64rem) {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }
}
.xl\:grid-cols-1 {
  @media (width >= 80rem) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-gradient-position {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-ordinal {
  syntax: "*";
  inherits: false;
}
@property --tw-slashed-zero {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-figure {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false;
}
@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}




:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --aw-bg: #070b16;
  --aw-panel: rgba(15, 23, 42, 0.82);
  --aw-panel-solid: #0f172a;
  --aw-panel-soft: rgba(30, 41, 59, 0.52);
  --aw-border: rgba(148, 163, 184, 0.16);
  --aw-border-strong: rgba(148, 163, 184, 0.26);
  --aw-text: #f8fafc;
  --aw-muted: #94a3b8;
  --aw-blue: #3b82f6;
  --aw-blue-soft: rgba(59, 130, 246, 0.13);
  --aw-focus: #60a5fa;
  --aw-radius: 1.5rem;
  --aw-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--aw-bg); scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -10%, rgba(37, 99, 235, 0.18), transparent 35rem),
    radial-gradient(circle at 85% 0%, rgba(124, 58, 237, 0.12), transparent 32rem),
    linear-gradient(180deg, #0a1020 0%, var(--aw-bg) 42%, #060911 100%);
  color: var(--aw-text);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
a { color: inherit; }
::selection { background: rgba(59, 130, 246, 0.35); color: #fff; }

:focus-visible {
  outline: 3px solid var(--aw-focus);
  outline-offset: 3px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.content-auto { content-visibility: auto; contain-intrinsic-size: 1px 120px; }

.aw-app { position: relative; isolation: isolate; min-height: 100vh; overflow-x: clip; }
.aw-shell { width: min(100% - 2rem, 78rem); margin-inline: auto; }
.aw-ambient { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aw-ambient-orb { position: absolute; width: 34rem; height: 34rem; border-radius: 999px; filter: blur(100px); opacity: 0.45; }
.aw-ambient-left { left: -16rem; top: 8rem; }
.aw-ambient-right { right: -18rem; top: 28rem; }

.aw-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(7, 11, 22, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  backdrop-filter: blur(22px) saturate(1.15);
}
.aw-logo-mark {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #2563eb, #4338ca);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aw-logo-mark:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(37,99,235,0.3); }
.aw-airport-switcher,
.aw-icon-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aw-border);
  background: rgba(255,255,255,0.045);
  color: #e2e8f0;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.aw-airport-switcher { gap: .65rem; border-radius: .95rem; padding: .35rem .55rem; }
.aw-icon-button { width: 2.75rem; border-radius: .95rem; }
.aw-airport-switcher:hover, .aw-icon-button:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.aw-product-hero,
.aw-card,
.aw-partner-strip,
.aw-utility-bar {
  border: 1px solid var(--aw-border);
  background: linear-gradient(150deg, rgba(15,23,42,0.9), rgba(10,15,30,0.78));
  box-shadow: var(--aw-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.aw-product-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-radius: 1.75rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  position: relative;
}
.aw-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(59,130,246,0.08), transparent 42%, rgba(124,58,237,0.07));
}
.aw-product-hero > * { position: relative; }
.aw-product-hero-mark {
  display: none;
  min-width: 10.5rem;
  aspect-ratio: 1.45;
  border: 1px solid rgba(147,197,253,0.18);
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 20%, rgba(96,165,250,0.22), transparent 55%), rgba(15,23,42,0.72);
  place-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.aw-product-hero-mark span { display: block; font-size: 2.2rem; font-weight: 950; letter-spacing: -.06em; }
.aw-product-hero-mark small { display: block; max-width: 9rem; margin-top: .25rem; font-size: .7rem; font-weight: 700; color: var(--aw-muted); }
.aw-card { border-radius: var(--aw-radius); padding: clamp(1rem, 2.4vw, 1.4rem); }
.aw-eyebrow { margin: 0; color: #93c5fd; font-size: .67rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }

.aw-dashboard-grid { display: grid; gap: 1rem; align-items: start; }
.aw-main-column, .aw-side-column { display: grid; min-width: 0; gap: 1rem; }
.aw-side-column { align-content: start; }

.aw-controls-card { box-shadow: 0 20px 55px rgba(0,0,0,.24); }
.aw-field-label { display: block; margin-bottom: .45rem; color: #94a3b8; font-size: .67rem; line-height: 1.3; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.aw-input, .aw-select, .aw-textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background-color: rgba(15,23,42,0.86);
  color: #f8fafc;
  padding: .72rem .85rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.aw-input::placeholder, .aw-textarea::placeholder { color: #64748b; }
.aw-input:hover, .aw-select:hover, .aw-textarea:hover { border-color: var(--aw-border-strong); }
.aw-input:focus, .aw-select:focus, .aw-textarea:focus { outline: none; border-color: rgba(96,165,250,.8); box-shadow: 0 0 0 4px rgba(59,130,246,.13); background: rgba(15,23,42,.98); }
.aw-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .7rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  padding-right: 2.5rem;
}
.aw-textarea { resize: vertical; min-height: 8rem; }
.aw-horizontal-options { display: flex; gap: .5rem; overflow-x: auto; padding: .1rem .1rem .25rem; scrollbar-width: thin; }
.aw-terminal-pill {
  min-height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid var(--aw-border);
  border-radius: .8rem;
  background: rgba(255,255,255,.035);
  color: #cbd5e1;
  padding: .55rem .78rem;
  font-size: .75rem;
  font-weight: 800;
  transition: all .18s ease;
}
.aw-terminal-pill:hover { background: rgba(255,255,255,.07); }
.aw-terminal-pill-active { border-color: rgba(96,165,250,.62); background: rgba(59,130,246,.14); color: #eff6ff; box-shadow: 0 0 0 3px rgba(59,130,246,.08); }
.aw-choice {
  display: flex;
  min-width: 0;
  min-height: 3.65rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background: rgba(255,255,255,.03);
  color: #94a3b8;
  padding: .55rem .35rem;
  text-align: center;
  font-size: .72rem;
  transition: all .18s ease;
}
.aw-choice:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.06); color: #e2e8f0; }
.aw-choice-active { border-color: rgba(96,165,250,.65); background: linear-gradient(145deg, rgba(37,99,235,.2), rgba(67,56,202,.13)); color: #eff6ff; box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 8px 22px rgba(37,99,235,.12); }

.aw-primary-button, .aw-secondary-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: .95rem;
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 850;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.aw-primary-button { border: 1px solid rgba(147,197,253,.22); background: linear-gradient(135deg, #2563eb, #4f46e5); color: #fff; box-shadow: 0 14px 30px rgba(37,99,235,.2), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-primary-button:hover { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-secondary-button { border: 1px solid var(--aw-border); background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-secondary-button:hover { transform: translateY(-1px); border-color: var(--aw-border-strong); background: rgba(255,255,255,.075); }
.aw-primary-button:disabled, .aw-secondary-button:disabled { cursor: not-allowed; opacity: .52; transform: none; box-shadow: none; }
.aw-text-button { display: inline-flex; min-height: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; padding: .5rem .75rem; color: #94a3b8; font-size: .75rem; font-weight: 750; }
.aw-text-button:hover { background: rgba(255,255,255,.05); color: #f8fafc; }

.aw-live-badge, .aw-model-badge, .aw-legend {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  white-space: nowrap;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.aw-live-badge { border: 1px solid rgba(52,211,153,.24); background: rgba(16,185,129,.11); color: #a7f3d0; padding: .45rem .65rem; }
.aw-model-badge { border: 1px solid rgba(147,197,253,.2); background: rgba(59,130,246,.1); color: #bfdbfe; padding: .45rem .65rem; }
.aw-stat-panel { min-width: 0; border: 1px solid var(--aw-border); border-radius: 1.15rem; background: rgba(255,255,255,.035); padding: 1rem; }
.aw-legend { gap: .35rem; border: 1px solid rgba(255,255,255,.08); padding: .35rem .55rem; background: rgba(255,255,255,.025); }
.aw-legend i { display: block; width: .45rem; height: .45rem; border-radius: 999px; }
.aw-inset-panel { border: 1px solid var(--aw-border); border-radius: 1.1rem; background: rgba(255,255,255,.028); padding: 1rem; }

.aw-timer-display { border: 1px solid rgba(52,211,153,.16); border-radius: 1.25rem; background: radial-gradient(circle at 50% 0%, rgba(16,185,129,.13), transparent 65%), rgba(2,6,23,.48); padding: 1.6rem 1rem; text-align: center; }
.aw-success-panel { display: flex; gap: .85rem; align-items: center; border: 1px solid rgba(52,211,153,.19); border-radius: 1.1rem; background: rgba(16,185,129,.075); padding: 1rem; }
.aw-step-check { display: inline-flex; width: 2rem; height: 2rem; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 999px; background: rgba(16,185,129,.17); color: #6ee7b7; font-weight: 950; }

.aw-alert { display: flex; gap: .75rem; align-items: flex-start; border: 1px solid; border-radius: 1rem; padding: .85rem 1rem; font-size: .78rem; line-height: 1.45; }
.aw-alert > div { min-width: 0; }
.aw-alert strong { display: block; color: #fff; }
.aw-alert span { display: block; margin-top: .15rem; opacity: .83; }
.aw-alert-danger { border-color: rgba(251,113,133,.25); background: rgba(244,63,94,.09); color: #fecdd3; }
.aw-alert-warning { border-color: rgba(251,191,36,.21); background: rgba(245,158,11,.075); color: #fde68a; }
.aw-alert-success { border-color: rgba(52,211,153,.21); background: rgba(16,185,129,.075); color: #a7f3d0; }
.aw-status-message { border: 1px solid; border-radius: .8rem; padding: .7rem .85rem; text-align: center; font-size: .75rem; font-weight: 750; }
.aw-status-error { border-color: rgba(251,113,133,.24); background: rgba(244,63,94,.08); color: #fecdd3; }
.aw-status-success { border-color: rgba(52,211,153,.22); background: rgba(16,185,129,.08); color: #a7f3d0; }

.aw-utility-bar { display: grid; gap: .65rem; border-radius: 1.4rem; padding: .65rem; }
.aw-utility-button { display: flex; min-width: 0; min-height: 4.2rem; align-items: center; gap: .8rem; border: 1px solid transparent; border-radius: 1rem; padding: .75rem; text-align: left; transition: background-color .18s ease, border-color .18s ease; }
.aw-utility-button:hover { border-color: var(--aw-border); background: rgba(255,255,255,.045); }
.aw-utility-icon { display: inline-flex; width: 2.4rem; height: 2.4rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid var(--aw-border); border-radius: .8rem; background: rgba(255,255,255,.04); color: #bfdbfe; font-weight: 950; }
.aw-utility-button strong { display: block; color: #f8fafc; font-size: .8rem; }
.aw-utility-button small { display: block; margin-top: .1rem; overflow: hidden; color: #64748b; font-size: .65rem; text-overflow: ellipsis; white-space: nowrap; }
.aw-partner-strip { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; justify-content: space-between; border-radius: 1.4rem; padding: 1.25rem; }
.aw-footer { padding: 1rem .5rem 2rem; text-align: center; color: #64748b; font-size: .68rem; line-height: 1.75; }
.aw-footer a:hover, .aw-footer button:hover { color: #cbd5e1; }
.aw-update-toast { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 45; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; border: 1px solid var(--aw-border-strong); border-radius: 1rem; background: rgba(15,23,42,.96); padding: .75rem; box-shadow: 0 24px 70px rgba(0,0,0,.55); color: #e2e8f0; font-size: .75rem; }

/* Native dialog uses the browser top layer, preventing desktop clipping by app containers. */
.aw-modal { width: auto; max-width: none; height: auto; max-height: none; margin: auto; border: 0; padding: 0; overflow: visible; background: transparent; color: inherit; }
.aw-modal[open] { display: grid; width: 100vw; height: 100dvh; place-items: center; }
.aw-modal::backdrop { background: rgba(1,4,12,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.aw-modal-surface { display: flex; width: min(calc(100vw - 2rem), 44rem); max-height: min(calc(100dvh - 2rem), 54rem); flex-direction: column; overflow: hidden; border: 1px solid var(--aw-border-strong); border-radius: 1.5rem; background: rgba(10,16,32,.98); box-shadow: 0 34px 110px rgba(0,0,0,.62); }
.aw-modal-sm .aw-modal-surface { width: min(calc(100vw - 2rem), 30rem); }
.aw-modal-md .aw-modal-surface { width: min(calc(100vw - 2rem), 38rem); }
.aw-modal-lg .aw-modal-surface { width: min(calc(100vw - 2rem), 50rem); }
.aw-modal-xl .aw-modal-surface { width: min(calc(100vw - 2rem), 64rem); }
.aw-modal-header, .aw-modal-footer { flex: 0 0 auto; border-color: var(--aw-border); background: rgba(10,16,32,.98); }
.aw-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--aw-border); padding: 1.15rem 1.2rem; }
.aw-modal-body { min-height: 0; flex: 1 1 auto; overflow-y: auto; overscroll-behavior: contain; padding: 1.15rem 1.2rem 1.4rem; scrollbar-gutter: stable; }
.aw-modal-footer { border-top: 1px solid var(--aw-border); padding: .9rem 1.2rem 1rem; }
.aw-tab-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .35rem; border: 1px solid var(--aw-border); border-radius: .9rem; background: rgba(255,255,255,.025); padding: .3rem; }
.aw-tab { min-height: 2.75rem; border-radius: .7rem; color: #94a3b8; padding: .45rem .35rem; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.aw-tab:hover { background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-tab-active { background: rgba(59,130,246,.14); color: #dbeafe; box-shadow: inset 0 0 0 1px rgba(96,165,250,.22); }
.aw-legal-block { border: 1px solid; border-radius: 1rem; padding: 1rem; }
.aw-legal-default { border-color: var(--aw-border); background: rgba(255,255,255,.03); color: #cbd5e1; }
.aw-legal-warning { border-color: rgba(251,191,36,.19); background: rgba(245,158,11,.065); color: #fde68a; }
.aw-legal-danger { border-color: rgba(251,113,133,.2); background: rgba(244,63,94,.065); color: #fecdd3; }

.aw-guide-step { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: 1rem; }
.aw-step-number { display: inline-flex; width: 2.1rem; height: 2.1rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(59,130,246,.14); color: #bfdbfe; font-size: .75rem; font-weight: 950; }
.aw-guide-mode { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: .65rem; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; }
.aw-guide-mode p { color: #94a3b8; font-size: .75rem; line-height: 1.55; }
.aw-use-case { display: flex; min-width: 0; flex-direction: column; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; background: rgba(2,6,23,.3); }
.aw-use-case > span { color: #93c5fd; font-size: 1.1rem; }
.aw-use-case strong { margin-top: .45rem; color: #f8fafc; font-size: .78rem; }
.aw-use-case small { margin-top: .25rem; color: #64748b; font-size: .68rem; line-height: 1.45; }

.aw-airport-list { display: grid; max-height: min(56dvh, 36rem); gap: .55rem; overflow-y: auto; padding-right: .15rem; }
.aw-airport-option { display: flex; min-width: 0; align-items: center; gap: .8rem; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: .8rem; text-align: left; transition: all .18s ease; }
.aw-airport-option:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.055); }
.aw-airport-option-active { border-color: rgba(96,165,250,.55); background: rgba(59,130,246,.105); }
.aw-airport-code { display: inline-flex; width: 3rem; height: 3rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(147,197,253,.16); border-radius: .85rem; background: rgba(59,130,246,.1); color: #dbeafe; font-size: .78rem; font-weight: 950; }

@media (min-width: 640px) {
  .aw-shell { width: min(100% - 3rem, 78rem); }
  .aw-product-hero { grid-template-columns: 1fr auto; }
  .aw-product-hero-mark { display: grid; }
  .aw-utility-bar { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .aw-partner-strip { flex-direction: row; align-items: center; }
  .aw-update-toast { right: 1.25rem; left: auto; max-width: 36rem; }
}

@media (min-width: 1024px) {
  .aw-dashboard-grid { grid-template-columns: minmax(0, 1.55fr) minmax(20rem, .85fr); gap: 1.25rem; }
  .aw-main-column, .aw-side-column { gap: 1.25rem; }
  .aw-card { padding: 1.45rem; }
}

@media (max-width: 639px) {
  .aw-shell { width: min(100% - 1rem, 78rem); }
  .aw-modal-mobile-full { margin: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; }
  .aw-modal-mobile-full .aw-modal-surface { width: 100vw; height: 100dvh; max-height: 100dvh; border-width: 0; border-radius: 0; }
  .aw-modal-mobile-full .aw-modal-header { padding-top: max(1rem, env(safe-area-inset-top)); }
  .aw-modal-mobile-full .aw-modal-footer { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .aw-modal:not(.aw-modal-mobile-full) .aw-modal-surface { width: calc(100vw - 1rem); max-height: calc(100dvh - 1rem); border-radius: 1.2rem; }
  .aw-modal-body, .aw-modal-header, .aw-modal-footer { padding-inline: 1rem; }
  .aw-choice { min-height: 3.85rem; }
}


@keyframes aw-fade-in {
  from { opacity: 0; transform: translateY(.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aw-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-.25rem); }
  40%, 80% { transform: translateX(.25rem); }
}

.animate-fade-in { animation: aw-fade-in .24s ease-out both; }
.animate-shake { animation: aw-shake .32s ease-in-out; }

@media (forced-colors: active) {
  .aw-card, .aw-product-hero, .aw-modal-surface, .aw-primary-button, .aw-secondary-button { border: 1px solid CanvasText; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ArrivalWise 2.1 source overrides */

:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --aw-bg: #070b16;
  --aw-panel: rgba(15, 23, 42, 0.82);
  --aw-panel-solid: #0f172a;
  --aw-panel-soft: rgba(30, 41, 59, 0.52);
  --aw-border: rgba(148, 163, 184, 0.16);
  --aw-border-strong: rgba(148, 163, 184, 0.26);
  --aw-text: #f8fafc;
  --aw-muted: #94a3b8;
  --aw-blue: #3b82f6;
  --aw-blue-soft: rgba(59, 130, 246, 0.13);
  --aw-focus: #60a5fa;
  --aw-radius: 1.5rem;
  --aw-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--aw-bg); scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -10%, rgba(37, 99, 235, 0.18), transparent 35rem),
    radial-gradient(circle at 85% 0%, rgba(124, 58, 237, 0.12), transparent 32rem),
    linear-gradient(180deg, #0a1020 0%, var(--aw-bg) 42%, #060911 100%);
  color: var(--aw-text);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
a { color: inherit; }
::selection { background: rgba(59, 130, 246, 0.35); color: #fff; }

:focus-visible {
  outline: 3px solid var(--aw-focus);
  outline-offset: 3px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.content-auto { content-visibility: auto; contain-intrinsic-size: 1px 120px; }

.aw-app { position: relative; isolation: isolate; min-height: 100vh; overflow-x: clip; }
.aw-shell { width: min(100% - 2rem, 78rem); margin-inline: auto; }
.aw-ambient { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aw-ambient-orb { position: absolute; width: 34rem; height: 34rem; border-radius: 999px; filter: blur(100px); opacity: 0.45; }
.aw-ambient-left { left: -16rem; top: 8rem; }
.aw-ambient-right { right: -18rem; top: 28rem; }

.aw-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(7, 11, 22, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  backdrop-filter: blur(22px) saturate(1.15);
}
.aw-logo-mark {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #2563eb, #4338ca);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aw-logo-mark:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(37,99,235,0.3); }
.aw-airport-switcher,
.aw-icon-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aw-border);
  background: rgba(255,255,255,0.045);
  color: #e2e8f0;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.aw-airport-switcher { gap: .65rem; border-radius: .95rem; padding: .35rem .55rem; }
.aw-icon-button { width: 2.75rem; border-radius: .95rem; }
.aw-airport-switcher:hover, .aw-icon-button:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.aw-product-hero,
.aw-card,
.aw-partner-strip,
.aw-utility-bar {
  border: 1px solid var(--aw-border);
  background: linear-gradient(150deg, rgba(15,23,42,0.9), rgba(10,15,30,0.78));
  box-shadow: var(--aw-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.aw-product-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-radius: 1.75rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  position: relative;
}
.aw-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(59,130,246,0.08), transparent 42%, rgba(124,58,237,0.07));
}
.aw-product-hero > * { position: relative; }
.aw-product-hero-mark {
  display: none;
  min-width: 10.5rem;
  aspect-ratio: 1.45;
  border: 1px solid rgba(147,197,253,0.18);
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 20%, rgba(96,165,250,0.22), transparent 55%), rgba(15,23,42,0.72);
  place-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.aw-product-hero-mark span { display: block; font-size: 2.2rem; font-weight: 950; letter-spacing: -.06em; }
.aw-product-hero-mark small { display: block; max-width: 9rem; margin-top: .25rem; font-size: .7rem; font-weight: 700; color: var(--aw-muted); }
.aw-card { border-radius: var(--aw-radius); padding: clamp(1rem, 2.4vw, 1.4rem); }
.aw-eyebrow { margin: 0; color: #93c5fd; font-size: .67rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }

.aw-dashboard-grid { display: grid; gap: 1rem; align-items: start; }
.aw-main-column, .aw-side-column { display: grid; min-width: 0; gap: 1rem; }
.aw-side-column { align-content: start; }

.aw-controls-card { box-shadow: 0 20px 55px rgba(0,0,0,.24); }
.aw-field-label { display: block; margin-bottom: .45rem; color: #94a3b8; font-size: .67rem; line-height: 1.3; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.aw-input, .aw-select, .aw-textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background-color: rgba(15,23,42,0.86);
  color: #f8fafc;
  padding: .72rem .85rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.aw-input::placeholder, .aw-textarea::placeholder { color: #64748b; }
.aw-input:hover, .aw-select:hover, .aw-textarea:hover { border-color: var(--aw-border-strong); }
.aw-input:focus, .aw-select:focus, .aw-textarea:focus { outline: none; border-color: rgba(96,165,250,.8); box-shadow: 0 0 0 4px rgba(59,130,246,.13); background: rgba(15,23,42,.98); }
.aw-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .7rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  padding-right: 2.5rem;
}
.aw-textarea { resize: vertical; min-height: 8rem; }
.aw-horizontal-options { display: flex; gap: .5rem; overflow-x: auto; padding: .1rem .1rem .25rem; scrollbar-width: thin; }
.aw-terminal-pill {
  min-height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid var(--aw-border);
  border-radius: .8rem;
  background: rgba(255,255,255,.035);
  color: #cbd5e1;
  padding: .55rem .78rem;
  font-size: .75rem;
  font-weight: 800;
  transition: all .18s ease;
}
.aw-terminal-pill:hover { background: rgba(255,255,255,.07); }
.aw-terminal-pill-active { border-color: rgba(96,165,250,.62); background: rgba(59,130,246,.14); color: #eff6ff; box-shadow: 0 0 0 3px rgba(59,130,246,.08); }
.aw-choice {
  display: flex;
  min-width: 0;
  min-height: 3.65rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background: rgba(255,255,255,.03);
  color: #94a3b8;
  padding: .55rem .35rem;
  text-align: center;
  font-size: .72rem;
  transition: all .18s ease;
}
.aw-choice:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.06); color: #e2e8f0; }
.aw-choice-active { border-color: rgba(96,165,250,.65); background: linear-gradient(145deg, rgba(37,99,235,.2), rgba(67,56,202,.13)); color: #eff6ff; box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 8px 22px rgba(37,99,235,.12); }

.aw-primary-button, .aw-secondary-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: .95rem;
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 850;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.aw-primary-button { border: 1px solid rgba(147,197,253,.22); background: linear-gradient(135deg, #2563eb, #4f46e5); color: #fff; box-shadow: 0 14px 30px rgba(37,99,235,.2), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-primary-button:hover { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-secondary-button { border: 1px solid var(--aw-border); background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-secondary-button:hover { transform: translateY(-1px); border-color: var(--aw-border-strong); background: rgba(255,255,255,.075); }
.aw-primary-button:disabled, .aw-secondary-button:disabled { cursor: not-allowed; opacity: .52; transform: none; box-shadow: none; }
.aw-text-button { display: inline-flex; min-height: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; padding: .5rem .75rem; color: #94a3b8; font-size: .75rem; font-weight: 750; }
.aw-text-button:hover { background: rgba(255,255,255,.05); color: #f8fafc; }

.aw-live-badge, .aw-model-badge, .aw-legend {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  white-space: nowrap;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.aw-live-badge { border: 1px solid rgba(52,211,153,.24); background: rgba(16,185,129,.11); color: #a7f3d0; padding: .45rem .65rem; }
.aw-model-badge { border: 1px solid rgba(147,197,253,.2); background: rgba(59,130,246,.1); color: #bfdbfe; padding: .45rem .65rem; }
.aw-stat-panel { min-width: 0; border: 1px solid var(--aw-border); border-radius: 1.15rem; background: rgba(255,255,255,.035); padding: 1rem; }
.aw-legend { gap: .35rem; border: 1px solid rgba(255,255,255,.08); padding: .35rem .55rem; background: rgba(255,255,255,.025); }
.aw-legend i { display: block; width: .45rem; height: .45rem; border-radius: 999px; }
.aw-inset-panel { border: 1px solid var(--aw-border); border-radius: 1.1rem; background: rgba(255,255,255,.028); padding: 1rem; }

.aw-timer-display { border: 1px solid rgba(52,211,153,.16); border-radius: 1.25rem; background: radial-gradient(circle at 50% 0%, rgba(16,185,129,.13), transparent 65%), rgba(2,6,23,.48); padding: 1.6rem 1rem; text-align: center; }
.aw-success-panel { display: flex; gap: .85rem; align-items: center; border: 1px solid rgba(52,211,153,.19); border-radius: 1.1rem; background: rgba(16,185,129,.075); padding: 1rem; }
.aw-step-check { display: inline-flex; width: 2rem; height: 2rem; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 999px; background: rgba(16,185,129,.17); color: #6ee7b7; font-weight: 950; }

.aw-alert { display: flex; gap: .75rem; align-items: flex-start; border: 1px solid; border-radius: 1rem; padding: .85rem 1rem; font-size: .78rem; line-height: 1.45; }
.aw-alert > div { min-width: 0; }
.aw-alert strong { display: block; color: #fff; }
.aw-alert span { display: block; margin-top: .15rem; opacity: .83; }
.aw-alert-danger { border-color: rgba(251,113,133,.25); background: rgba(244,63,94,.09); color: #fecdd3; }
.aw-alert-warning { border-color: rgba(251,191,36,.21); background: rgba(245,158,11,.075); color: #fde68a; }
.aw-alert-success { border-color: rgba(52,211,153,.21); background: rgba(16,185,129,.075); color: #a7f3d0; }
.aw-status-message { border: 1px solid; border-radius: .8rem; padding: .7rem .85rem; text-align: center; font-size: .75rem; font-weight: 750; }
.aw-status-error { border-color: rgba(251,113,133,.24); background: rgba(244,63,94,.08); color: #fecdd3; }
.aw-status-success { border-color: rgba(52,211,153,.22); background: rgba(16,185,129,.08); color: #a7f3d0; }

.aw-utility-bar { display: grid; gap: .65rem; border-radius: 1.4rem; padding: .65rem; }
.aw-utility-button { display: flex; min-width: 0; min-height: 4.2rem; align-items: center; gap: .8rem; border: 1px solid transparent; border-radius: 1rem; padding: .75rem; text-align: left; transition: background-color .18s ease, border-color .18s ease; }
.aw-utility-button:hover { border-color: var(--aw-border); background: rgba(255,255,255,.045); }
.aw-utility-icon { display: inline-flex; width: 2.4rem; height: 2.4rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid var(--aw-border); border-radius: .8rem; background: rgba(255,255,255,.04); color: #bfdbfe; font-weight: 950; }
.aw-utility-button strong { display: block; color: #f8fafc; font-size: .8rem; }
.aw-utility-button small { display: block; margin-top: .1rem; overflow: hidden; color: #64748b; font-size: .65rem; text-overflow: ellipsis; white-space: nowrap; }
.aw-partner-strip { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; justify-content: space-between; border-radius: 1.4rem; padding: 1.25rem; }
.aw-footer { padding: 1rem .5rem 2rem; text-align: center; color: #64748b; font-size: .68rem; line-height: 1.75; }
.aw-footer a:hover, .aw-footer button:hover { color: #cbd5e1; }
.aw-update-toast { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 45; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; border: 1px solid var(--aw-border-strong); border-radius: 1rem; background: rgba(15,23,42,.96); padding: .75rem; box-shadow: 0 24px 70px rgba(0,0,0,.55); color: #e2e8f0; font-size: .75rem; }

/* Native dialog uses the browser top layer, preventing desktop clipping by app containers. */
.aw-modal { width: auto; max-width: none; height: auto; max-height: none; margin: auto; border: 0; padding: 0; overflow: visible; background: transparent; color: inherit; }
.aw-modal[open] { display: grid; width: 100vw; height: 100dvh; place-items: center; }
.aw-modal::backdrop { background: rgba(1,4,12,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.aw-modal-surface { display: flex; width: min(calc(100vw - 2rem), 44rem); max-height: min(calc(100dvh - 2rem), 54rem); flex-direction: column; overflow: hidden; border: 1px solid var(--aw-border-strong); border-radius: 1.5rem; background: rgba(10,16,32,.98); box-shadow: 0 34px 110px rgba(0,0,0,.62); }
.aw-modal-sm .aw-modal-surface { width: min(calc(100vw - 2rem), 30rem); }
.aw-modal-md .aw-modal-surface { width: min(calc(100vw - 2rem), 38rem); }
.aw-modal-lg .aw-modal-surface { width: min(calc(100vw - 2rem), 50rem); }
.aw-modal-xl .aw-modal-surface { width: min(calc(100vw - 2rem), 64rem); }
.aw-modal-header, .aw-modal-footer { flex: 0 0 auto; border-color: var(--aw-border); background: rgba(10,16,32,.98); }
.aw-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--aw-border); padding: 1.15rem 1.2rem; }
.aw-modal-body { min-height: 0; flex: 1 1 auto; overflow-y: auto; overscroll-behavior: contain; padding: 1.15rem 1.2rem 1.4rem; scrollbar-gutter: stable; }
.aw-modal-footer { border-top: 1px solid var(--aw-border); padding: .9rem 1.2rem 1rem; }
.aw-tab-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .35rem; border: 1px solid var(--aw-border); border-radius: .9rem; background: rgba(255,255,255,.025); padding: .3rem; }
.aw-tab { min-height: 2.75rem; border-radius: .7rem; color: #94a3b8; padding: .45rem .35rem; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.aw-tab:hover { background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-tab-active { background: rgba(59,130,246,.14); color: #dbeafe; box-shadow: inset 0 0 0 1px rgba(96,165,250,.22); }
.aw-legal-block { border: 1px solid; border-radius: 1rem; padding: 1rem; }
.aw-legal-default { border-color: var(--aw-border); background: rgba(255,255,255,.03); color: #cbd5e1; }
.aw-legal-warning { border-color: rgba(251,191,36,.19); background: rgba(245,158,11,.065); color: #fde68a; }
.aw-legal-danger { border-color: rgba(251,113,133,.2); background: rgba(244,63,94,.065); color: #fecdd3; }

.aw-guide-step { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: 1rem; }
.aw-step-number { display: inline-flex; width: 2.1rem; height: 2.1rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(59,130,246,.14); color: #bfdbfe; font-size: .75rem; font-weight: 950; }
.aw-guide-mode { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: .65rem; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; }
.aw-guide-mode p { color: #94a3b8; font-size: .75rem; line-height: 1.55; }
.aw-use-case { display: flex; min-width: 0; flex-direction: column; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; background: rgba(2,6,23,.3); }
.aw-use-case > span { color: #93c5fd; font-size: 1.1rem; }
.aw-use-case strong { margin-top: .45rem; color: #f8fafc; font-size: .78rem; }
.aw-use-case small { margin-top: .25rem; color: #64748b; font-size: .68rem; line-height: 1.45; }

.aw-airport-list { display: grid; max-height: min(56dvh, 36rem); gap: .55rem; overflow-y: auto; padding-right: .15rem; }
.aw-airport-option { display: flex; min-width: 0; align-items: center; gap: .8rem; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: .8rem; text-align: left; transition: all .18s ease; }
.aw-airport-option:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.055); }
.aw-airport-option-active { border-color: rgba(96,165,250,.55); background: rgba(59,130,246,.105); }
.aw-airport-code { display: inline-flex; width: 3rem; height: 3rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(147,197,253,.16); border-radius: .85rem; background: rgba(59,130,246,.1); color: #dbeafe; font-size: .78rem; font-weight: 950; }


/* Release 2.1: official airport intelligence and optional processing-method capture. */
.aw-intelligence-card {
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  background: linear-gradient(155deg, rgba(15,23,42,.92), rgba(8,13,26,.84));
  padding: clamp(1rem, 2.4vw, 1.45rem);
  box-shadow: 0 20px 56px rgba(0,0,0,.26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.aw-intelligence-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .85rem;
}
.aw-intelligence-status {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 999px;
  background: rgba(148,163,184,.065);
  color: #cbd5e1;
  padding: .35rem .58rem;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}
.aw-intelligence-panel {
  min-width: 0;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 1.15rem;
  background: rgba(2,6,23,.34);
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.aw-intelligence-epp {
  border-color: rgba(45,212,191,.18);
  background: linear-gradient(150deg, rgba(15,118,110,.075), rgba(2,6,23,.35) 45%);
}
.aw-intelligence-jfk {
  border-color: rgba(96,165,250,.18);
  background: linear-gradient(150deg, rgba(37,99,235,.075), rgba(2,6,23,.35) 45%);
}
.aw-intelligence-icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: .85rem;
  background: rgba(255,255,255,.045);
  color: #bfdbfe;
}
.aw-source-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(45,212,191,.18);
  border-radius: 999px;
  background: rgba(20,184,166,.09);
  color: #99f6e4;
  padding: .3rem .5rem;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.aw-source-badge-blue {
  border-color: rgba(96,165,250,.18);
  background: rgba(59,130,246,.1);
  color: #bfdbfe;
}
.aw-intelligence-step {
  display: grid;
  grid-template-columns: 1.55rem minmax(0,1fr);
  gap: .65rem;
  align-items: start;
}
.aw-intelligence-step > span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45,212,191,.18);
  border-radius: .5rem;
  background: rgba(20,184,166,.08);
  color: #99f6e4;
  font-size: .65rem;
  font-weight: 950;
}
.aw-inline-link {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: .28rem;
  border-radius: .55rem;
  color: #bfdbfe;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,.35);
  text-underline-offset: .25rem;
}
.aw-inline-link:hover { color: #fff; text-decoration-color: rgba(255,255,255,.7); }
.aw-timeline-box {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .25rem;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: .85rem;
  background: rgba(255,255,255,.028);
  padding: .8rem;
}
.aw-timeline-box span { color: #94a3b8; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.aw-timeline-box strong { color: #e2e8f0; font-size: .76rem; line-height: 1.5; }

.aw-processing-panel {
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 1rem;
  background: rgba(2,6,23,.3);
  padding: .9rem;
}
.aw-processing-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .55rem;
}
.aw-processing-choice {
  display: flex;
  min-width: 0;
  min-height: 3.6rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .2rem;
  border: 1px solid var(--aw-border);
  border-radius: .85rem;
  background: rgba(255,255,255,.03);
  color: #cbd5e1;
  padding: .65rem .7rem;
  text-align: left;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.aw-processing-choice:hover {
  border-color: var(--aw-border-strong);
  background: rgba(255,255,255,.055);
  transform: translateY(-1px);
}
.aw-processing-choice strong { color: #f1f5f9; font-size: .73rem; line-height: 1.3; }
.aw-processing-choice span { color: #7f8ea3; font-size: .62rem; line-height: 1.35; }
.aw-processing-choice-active {
  border-color: rgba(96,165,250,.56);
  background: rgba(37,99,235,.12);
  box-shadow: 0 0 0 3px rgba(59,130,246,.065), inset 0 1px 0 rgba(255,255,255,.045);
}
.aw-processing-choice-active strong { color: #eff6ff; }
.aw-processing-choice-active span { color: #bfdbfe; }

@media (min-width: 640px) {
  .aw-shell { width: min(100% - 3rem, 78rem); }
  .aw-product-hero { grid-template-columns: 1fr auto; }
  .aw-product-hero-mark { display: grid; }
  .aw-utility-bar { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .aw-partner-strip { flex-direction: row; align-items: center; }
  .aw-update-toast { right: 1.25rem; left: auto; max-width: 36rem; }
}

@media (min-width: 1024px) {
  .aw-dashboard-grid { grid-template-columns: minmax(0, 1.55fr) minmax(20rem, .85fr); gap: 1.25rem; }
  .aw-main-column, .aw-side-column { gap: 1.25rem; }
  .aw-card { padding: 1.45rem; }
}

@media (max-width: 639px) {
  .aw-shell { width: min(100% - 1rem, 78rem); }
  .aw-modal-mobile-full { margin: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; }
  .aw-modal-mobile-full .aw-modal-surface { width: 100vw; height: 100dvh; max-height: 100dvh; border-width: 0; border-radius: 0; }
  .aw-modal-mobile-full .aw-modal-header { padding-top: max(1rem, env(safe-area-inset-top)); }
  .aw-modal-mobile-full .aw-modal-footer { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .aw-modal:not(.aw-modal-mobile-full) .aw-modal-surface { width: calc(100vw - 1rem); max-height: calc(100dvh - 1rem); border-radius: 1.2rem; }
  .aw-modal-body, .aw-modal-header, .aw-modal-footer { padding-inline: 1rem; }
  .aw-choice { min-height: 3.85rem; }
  .aw-intelligence-status { white-space: normal; }
  .aw-processing-grid { grid-template-columns: 1fr; }
  .aw-intelligence-panel { padding: .9rem; }
}


@keyframes aw-fade-in {
  from { opacity: 0; transform: translateY(.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aw-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-.25rem); }
  40%, 80% { transform: translateX(.25rem); }
}

.animate-fade-in { animation: aw-fade-in .24s ease-out both; }
.animate-shake { animation: aw-shake .32s ease-in-out; }

@media (forced-colors: active) {
  .aw-card, .aw-product-hero, .aw-modal-surface, .aw-primary-button, .aw-secondary-button, .aw-intelligence-card, .aw-intelligence-panel, .aw-processing-choice { border: 1px solid CanvasText; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* Portable 2.1 utility patch for classes introduced after the 2.0 vendor build. */
.h-3\.5{height:.875rem}.w-3\.5{width:.875rem}.leading-4{line-height:1rem}.gap-x-4{column-gap:1rem}
.border-amber-300\/15{border-color:rgb(252 211 77 / .15)}.border-cyan-400\/15{border-color:rgb(34 211 238 / .15)}
.bg-amber-300\/\[0\.055\]{background-color:rgb(252 211 77 / .055)}.bg-blue-300\/\[0\.055\]{background-color:rgb(147 197 253 / .055)}.bg-cyan-400\/\[0\.055\]{background-color:rgb(34 211 238 / .055)}
.text-amber-100\/85{color:rgb(254 243 199 / .85)}.text-cyan-100\/80{color:rgb(207 250 254 / .8)}
@media(min-width:640px){.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(min-width:1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1280px){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}


/* ArrivalWise 2.1.1 source CSS overrides */
:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --aw-bg: #070b16;
  --aw-panel: rgba(15, 23, 42, 0.82);
  --aw-panel-solid: #0f172a;
  --aw-panel-soft: rgba(30, 41, 59, 0.52);
  --aw-border: rgba(148, 163, 184, 0.16);
  --aw-border-strong: rgba(148, 163, 184, 0.26);
  --aw-text: #f8fafc;
  --aw-muted: #94a3b8;
  --aw-blue: #3b82f6;
  --aw-blue-soft: rgba(59, 130, 246, 0.13);
  --aw-focus: #60a5fa;
  --aw-radius: 1.5rem;
  --aw-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--aw-bg); scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -10%, rgba(37, 99, 235, 0.18), transparent 35rem),
    radial-gradient(circle at 85% 0%, rgba(124, 58, 237, 0.12), transparent 32rem),
    linear-gradient(180deg, #0a1020 0%, var(--aw-bg) 42%, #060911 100%);
  color: var(--aw-text);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
a { color: inherit; }
::selection { background: rgba(59, 130, 246, 0.35); color: #fff; }

:focus-visible {
  outline: 3px solid var(--aw-focus);
  outline-offset: 3px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.content-auto { content-visibility: auto; contain-intrinsic-size: 1px 120px; }

.aw-app { position: relative; isolation: isolate; min-height: 100vh; overflow-x: clip; }
.aw-shell { width: min(100% - 2rem, 78rem); margin-inline: auto; }
.aw-ambient { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aw-ambient-orb { position: absolute; width: 34rem; height: 34rem; border-radius: 999px; filter: blur(100px); opacity: 0.45; }
.aw-ambient-left { left: -16rem; top: 8rem; }
.aw-ambient-right { right: -18rem; top: 28rem; }

.aw-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(7, 11, 22, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  backdrop-filter: blur(22px) saturate(1.15);
}
.aw-logo-mark {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #2563eb, #4338ca);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aw-logo-mark:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(37,99,235,0.3); }
.aw-airport-switcher,
.aw-icon-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aw-border);
  background: rgba(255,255,255,0.045);
  color: #e2e8f0;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.aw-airport-switcher { gap: .65rem; border-radius: .95rem; padding: .35rem .55rem; }
.aw-icon-button { width: 2.75rem; border-radius: .95rem; }
.aw-airport-switcher:hover, .aw-icon-button:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.aw-product-hero,
.aw-card,
.aw-partner-strip,
.aw-utility-bar {
  border: 1px solid var(--aw-border);
  background: linear-gradient(150deg, rgba(15,23,42,0.9), rgba(10,15,30,0.78));
  box-shadow: var(--aw-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.aw-product-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-radius: 1.75rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  position: relative;
}
.aw-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(59,130,246,0.08), transparent 42%, rgba(124,58,237,0.07));
}
.aw-product-hero > * { position: relative; }
.aw-product-hero-mark {
  display: none;
  min-width: 10.5rem;
  aspect-ratio: 1.45;
  border: 1px solid rgba(147,197,253,0.18);
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 20%, rgba(96,165,250,0.22), transparent 55%), rgba(15,23,42,0.72);
  place-items: center;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.aw-product-hero-mark span { display: block; font-size: 2.2rem; font-weight: 950; letter-spacing: -.06em; }
.aw-product-hero-mark small { display: block; max-width: 9rem; margin-top: .25rem; font-size: .7rem; font-weight: 700; color: var(--aw-muted); }
.aw-card { border-radius: var(--aw-radius); padding: clamp(1rem, 2.4vw, 1.4rem); }
.aw-eyebrow { margin: 0; color: #93c5fd; font-size: .67rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }

.aw-dashboard-grid { display: grid; gap: 1rem; align-items: start; }
.aw-main-column, .aw-side-column { display: grid; min-width: 0; gap: 1rem; }
.aw-side-column { align-content: start; }

.aw-controls-card { box-shadow: 0 20px 55px rgba(0,0,0,.24); }
.aw-field-label { display: block; margin-bottom: .45rem; color: #94a3b8; font-size: .67rem; line-height: 1.3; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.aw-input, .aw-select, .aw-textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background-color: rgba(15,23,42,0.86);
  color: #f8fafc;
  padding: .72rem .85rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.aw-input::placeholder, .aw-textarea::placeholder { color: #64748b; }
.aw-input:hover, .aw-select:hover, .aw-textarea:hover { border-color: var(--aw-border-strong); }
.aw-input:focus, .aw-select:focus, .aw-textarea:focus { outline: none; border-color: rgba(96,165,250,.8); box-shadow: 0 0 0 4px rgba(59,130,246,.13); background: rgba(15,23,42,.98); }
.aw-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .7rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem;
  padding-right: 2.5rem;
}
.aw-textarea { resize: vertical; min-height: 8rem; }
.aw-horizontal-options { display: flex; gap: .5rem; overflow-x: auto; padding: .1rem .1rem .25rem; scrollbar-width: thin; }
.aw-terminal-pill {
  min-height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid var(--aw-border);
  border-radius: .8rem;
  background: rgba(255,255,255,.035);
  color: #cbd5e1;
  padding: .55rem .78rem;
  font-size: .75rem;
  font-weight: 800;
  transition: all .18s ease;
}
.aw-terminal-pill:hover { background: rgba(255,255,255,.07); }
.aw-terminal-pill-active { border-color: rgba(96,165,250,.62); background: rgba(59,130,246,.14); color: #eff6ff; box-shadow: 0 0 0 3px rgba(59,130,246,.08); }
.aw-choice {
  display: flex;
  min-width: 0;
  min-height: 3.65rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  border: 1px solid var(--aw-border);
  border-radius: .9rem;
  background: rgba(255,255,255,.03);
  color: #94a3b8;
  padding: .55rem .35rem;
  text-align: center;
  font-size: .72rem;
  transition: all .18s ease;
}
.aw-choice:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.06); color: #e2e8f0; }
.aw-choice-active { border-color: rgba(96,165,250,.65); background: linear-gradient(145deg, rgba(37,99,235,.2), rgba(67,56,202,.13)); color: #eff6ff; box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 8px 22px rgba(37,99,235,.12); }

.aw-primary-button, .aw-secondary-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: .95rem;
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 850;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.aw-primary-button { border: 1px solid rgba(147,197,253,.22); background: linear-gradient(135deg, #2563eb, #4f46e5); color: #fff; box-shadow: 0 14px 30px rgba(37,99,235,.2), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-primary-button:hover { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.18); }
.aw-secondary-button { border: 1px solid var(--aw-border); background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-secondary-button:hover { transform: translateY(-1px); border-color: var(--aw-border-strong); background: rgba(255,255,255,.075); }
.aw-primary-button:disabled, .aw-secondary-button:disabled { cursor: not-allowed; opacity: .52; transform: none; box-shadow: none; }
.aw-text-button { display: inline-flex; min-height: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; padding: .5rem .75rem; color: #94a3b8; font-size: .75rem; font-weight: 750; }
.aw-text-button:hover { background: rgba(255,255,255,.05); color: #f8fafc; }

.aw-live-badge, .aw-model-badge, .aw-legend {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  white-space: nowrap;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.aw-live-badge { border: 1px solid rgba(52,211,153,.24); background: rgba(16,185,129,.11); color: #a7f3d0; padding: .45rem .65rem; }
.aw-model-badge { border: 1px solid rgba(147,197,253,.2); background: rgba(59,130,246,.1); color: #bfdbfe; padding: .45rem .65rem; }
.aw-stat-panel { min-width: 0; border: 1px solid var(--aw-border); border-radius: 1.15rem; background: rgba(255,255,255,.035); padding: 1rem; }
.aw-legend { gap: .35rem; border: 1px solid rgba(255,255,255,.08); padding: .35rem .55rem; background: rgba(255,255,255,.025); }
.aw-legend i { display: block; width: .45rem; height: .45rem; border-radius: 999px; }
.aw-inset-panel { border: 1px solid var(--aw-border); border-radius: 1.1rem; background: rgba(255,255,255,.028); padding: 1rem; }

.aw-timer-display { border: 1px solid rgba(52,211,153,.16); border-radius: 1.25rem; background: radial-gradient(circle at 50% 0%, rgba(16,185,129,.13), transparent 65%), rgba(2,6,23,.48); padding: 1.6rem 1rem; text-align: center; }
.aw-success-panel { display: flex; gap: .85rem; align-items: center; border: 1px solid rgba(52,211,153,.19); border-radius: 1.1rem; background: rgba(16,185,129,.075); padding: 1rem; }
.aw-step-check { display: inline-flex; width: 2rem; height: 2rem; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 999px; background: rgba(16,185,129,.17); color: #6ee7b7; font-weight: 950; }

.aw-alert { display: flex; gap: .75rem; align-items: flex-start; border: 1px solid; border-radius: 1rem; padding: .85rem 1rem; font-size: .78rem; line-height: 1.45; }
.aw-alert > div { min-width: 0; }
.aw-alert strong { display: block; color: #fff; }
.aw-alert span { display: block; margin-top: .15rem; opacity: .83; }
.aw-alert-danger { border-color: rgba(251,113,133,.25); background: rgba(244,63,94,.09); color: #fecdd3; }
.aw-alert-warning { border-color: rgba(251,191,36,.21); background: rgba(245,158,11,.075); color: #fde68a; }
.aw-alert-success { border-color: rgba(52,211,153,.21); background: rgba(16,185,129,.075); color: #a7f3d0; }
.aw-status-message { border: 1px solid; border-radius: .8rem; padding: .7rem .85rem; text-align: center; font-size: .75rem; font-weight: 750; }
.aw-status-error { border-color: rgba(251,113,133,.24); background: rgba(244,63,94,.08); color: #fecdd3; }
.aw-status-success { border-color: rgba(52,211,153,.22); background: rgba(16,185,129,.08); color: #a7f3d0; }

.aw-utility-bar { display: grid; gap: .65rem; border-radius: 1.4rem; padding: .65rem; }
.aw-utility-button { display: flex; min-width: 0; min-height: 4.2rem; align-items: center; gap: .8rem; border: 1px solid transparent; border-radius: 1rem; padding: .75rem; text-align: left; transition: background-color .18s ease, border-color .18s ease; }
.aw-utility-button:hover { border-color: var(--aw-border); background: rgba(255,255,255,.045); }
.aw-utility-icon { display: inline-flex; width: 2.4rem; height: 2.4rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid var(--aw-border); border-radius: .8rem; background: rgba(255,255,255,.04); color: #bfdbfe; font-weight: 950; }
.aw-utility-button strong { display: block; color: #f8fafc; font-size: .8rem; }
.aw-utility-button small { display: block; margin-top: .1rem; overflow: hidden; color: #64748b; font-size: .65rem; text-overflow: ellipsis; white-space: nowrap; }
.aw-partner-strip { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; justify-content: space-between; border-radius: 1.4rem; padding: 1.25rem; }
.aw-footer { padding: 1rem .5rem 2rem; text-align: center; color: #64748b; font-size: .68rem; line-height: 1.75; }
.aw-footer a:hover, .aw-footer button:hover { color: #cbd5e1; }
.aw-update-toast { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 45; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; border: 1px solid var(--aw-border-strong); border-radius: 1rem; background: rgba(15,23,42,.96); padding: .75rem; box-shadow: 0 24px 70px rgba(0,0,0,.55); color: #e2e8f0; font-size: .75rem; }

/* Native dialog uses the browser top layer, preventing desktop clipping by app containers. */
.aw-modal { width: auto; max-width: none; height: auto; max-height: none; margin: auto; border: 0; padding: 0; overflow: visible; background: transparent; color: inherit; }
.aw-modal[open] { display: grid; width: 100vw; height: 100dvh; place-items: center; }
.aw-modal::backdrop { background: rgba(1,4,12,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.aw-modal-surface { display: flex; width: min(calc(100vw - 2rem), 44rem); max-height: min(calc(100dvh - 2rem), 54rem); flex-direction: column; overflow: hidden; border: 1px solid var(--aw-border-strong); border-radius: 1.5rem; background: rgba(10,16,32,.98); box-shadow: 0 34px 110px rgba(0,0,0,.62); }
.aw-modal-sm .aw-modal-surface { width: min(calc(100vw - 2rem), 30rem); }
.aw-modal-md .aw-modal-surface { width: min(calc(100vw - 2rem), 38rem); }
.aw-modal-lg .aw-modal-surface { width: min(calc(100vw - 2rem), 50rem); }
.aw-modal-xl .aw-modal-surface { width: min(calc(100vw - 2rem), 64rem); }
.aw-modal-header, .aw-modal-footer { flex: 0 0 auto; border-color: var(--aw-border); background: rgba(10,16,32,.98); }
.aw-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--aw-border); padding: 1.15rem 1.2rem; }
.aw-modal-body { min-height: 0; flex: 1 1 auto; overflow-y: auto; overscroll-behavior: contain; padding: 1.15rem 1.2rem 1.4rem; scrollbar-gutter: stable; }
.aw-modal-footer { border-top: 1px solid var(--aw-border); padding: .9rem 1.2rem 1rem; }
.aw-tab-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .35rem; border: 1px solid var(--aw-border); border-radius: .9rem; background: rgba(255,255,255,.025); padding: .3rem; }
.aw-tab { min-height: 2.75rem; border-radius: .7rem; color: #94a3b8; padding: .45rem .35rem; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.aw-tab:hover { background: rgba(255,255,255,.045); color: #e2e8f0; }
.aw-tab-active { background: rgba(59,130,246,.14); color: #dbeafe; box-shadow: inset 0 0 0 1px rgba(96,165,250,.22); }
.aw-legal-block { border: 1px solid; border-radius: 1rem; padding: 1rem; }
.aw-legal-default { border-color: var(--aw-border); background: rgba(255,255,255,.03); color: #cbd5e1; }
.aw-legal-warning { border-color: rgba(251,191,36,.19); background: rgba(245,158,11,.065); color: #fde68a; }
.aw-legal-danger { border-color: rgba(251,113,133,.2); background: rgba(244,63,94,.065); color: #fecdd3; }

.aw-guide-step { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: 1rem; }
.aw-step-number { display: inline-flex; width: 2.1rem; height: 2.1rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(59,130,246,.14); color: #bfdbfe; font-size: .75rem; font-weight: 950; }
.aw-guide-mode { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: .65rem; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; }
.aw-guide-mode p { color: #94a3b8; font-size: .75rem; line-height: 1.55; }
.aw-use-case { display: flex; min-width: 0; flex-direction: column; border: 1px solid rgba(255,255,255,.07); border-radius: .9rem; padding: .85rem; background: rgba(2,6,23,.3); }
.aw-use-case > span { color: #93c5fd; font-size: 1.1rem; }
.aw-use-case strong { margin-top: .45rem; color: #f8fafc; font-size: .78rem; }
.aw-use-case small { margin-top: .25rem; color: #64748b; font-size: .68rem; line-height: 1.45; }

.aw-airport-list { display: grid; max-height: min(56dvh, 36rem); gap: .55rem; overflow-y: auto; padding-right: .15rem; }
.aw-airport-option { display: flex; min-width: 0; align-items: center; gap: .8rem; border: 1px solid var(--aw-border); border-radius: 1rem; background: rgba(255,255,255,.028); padding: .8rem; text-align: left; transition: all .18s ease; }
.aw-airport-option:hover { border-color: var(--aw-border-strong); background: rgba(255,255,255,.055); }
.aw-airport-option-active { border-color: rgba(96,165,250,.55); background: rgba(59,130,246,.105); }
.aw-airport-code { display: inline-flex; width: 3rem; height: 3rem; flex: 0 0 auto; align-items: center; justify-content: center; border: 1px solid rgba(147,197,253,.16); border-radius: .85rem; background: rgba(59,130,246,.1); color: #dbeafe; font-size: .78rem; font-weight: 950; }


/* Release 2.1: official airport intelligence and optional processing-method capture. */
.aw-intelligence-card {
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  background: linear-gradient(155deg, rgba(15,23,42,.92), rgba(8,13,26,.84));
  padding: clamp(1rem, 2.4vw, 1.45rem);
  box-shadow: 0 20px 56px rgba(0,0,0,.26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.aw-intelligence-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .85rem;
}
.aw-intelligence-status {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 999px;
  background: rgba(148,163,184,.065);
  color: #cbd5e1;
  padding: .35rem .58rem;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}
.aw-intelligence-panel {
  min-width: 0;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 1.15rem;
  background: rgba(2,6,23,.34);
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.aw-intelligence-epp {
  border-color: rgba(45,212,191,.18);
  background: linear-gradient(150deg, rgba(15,118,110,.075), rgba(2,6,23,.35) 45%);
}
.aw-intelligence-jfk {
  border-color: rgba(96,165,250,.18);
  background: linear-gradient(150deg, rgba(37,99,235,.075), rgba(2,6,23,.35) 45%);
}
.aw-intelligence-icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: .85rem;
  background: rgba(255,255,255,.045);
  color: #bfdbfe;
}
.aw-source-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(45,212,191,.18);
  border-radius: 999px;
  background: rgba(20,184,166,.09);
  color: #99f6e4;
  padding: .3rem .5rem;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.aw-source-badge-blue {
  border-color: rgba(96,165,250,.18);
  background: rgba(59,130,246,.1);
  color: #bfdbfe;
}
.aw-intelligence-step {
  display: grid;
  grid-template-columns: 1.55rem minmax(0,1fr);
  gap: .65rem;
  align-items: start;
}
.aw-intelligence-step > span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45,212,191,.18);
  border-radius: .5rem;
  background: rgba(20,184,166,.08);
  color: #99f6e4;
  font-size: .65rem;
  font-weight: 950;
}
.aw-inline-link {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: .28rem;
  border-radius: .55rem;
  color: #bfdbfe;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,.35);
  text-underline-offset: .25rem;
}
.aw-inline-link:hover { color: #fff; text-decoration-color: rgba(255,255,255,.7); }
.aw-timeline-box {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .25rem;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: .85rem;
  background: rgba(255,255,255,.028);
  padding: .8rem;
}
.aw-timeline-box span { color: #94a3b8; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.aw-timeline-box strong { color: #e2e8f0; font-size: .76rem; line-height: 1.5; }

.aw-processing-panel {
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 1rem;
  background: rgba(2,6,23,.3);
  padding: .9rem;
}
.aw-processing-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .55rem;
}
.aw-processing-choice {
  display: flex;
  min-width: 0;
  min-height: 3.6rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .2rem;
  border: 1px solid var(--aw-border);
  border-radius: .85rem;
  background: rgba(255,255,255,.03);
  color: #cbd5e1;
  padding: .65rem .7rem;
  text-align: left;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.aw-processing-choice:hover {
  border-color: var(--aw-border-strong);
  background: rgba(255,255,255,.055);
  transform: translateY(-1px);
}
.aw-processing-choice strong { color: #f1f5f9; font-size: .73rem; line-height: 1.3; }
.aw-processing-choice span { color: #7f8ea3; font-size: .62rem; line-height: 1.35; }
.aw-processing-choice-active {
  border-color: rgba(96,165,250,.56);
  background: rgba(37,99,235,.12);
  box-shadow: 0 0 0 3px rgba(59,130,246,.065), inset 0 1px 0 rgba(255,255,255,.045);
}
.aw-processing-choice-active strong { color: #eff6ff; }
.aw-processing-choice-active span { color: #bfdbfe; }

@media (min-width: 640px) {
  .aw-shell { width: min(100% - 3rem, 78rem); }
  .aw-product-hero { grid-template-columns: 1fr auto; }
  .aw-product-hero-mark { display: grid; }
  .aw-utility-bar { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .aw-partner-strip { flex-direction: row; align-items: center; }
  .aw-update-toast { right: 1.25rem; left: auto; max-width: 36rem; }
}

@media (min-width: 1024px) {
  .aw-dashboard-grid { grid-template-columns: minmax(0, 1.55fr) minmax(20rem, .85fr); gap: 1.25rem; }
  .aw-main-column, .aw-side-column { gap: 1.25rem; }
  .aw-card { padding: 1.45rem; }
}

@media (max-width: 639px) {
  .aw-shell { width: min(100% - 1rem, 78rem); }
  .aw-modal-mobile-full { margin: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; }
  .aw-modal-mobile-full .aw-modal-surface { width: 100vw; height: 100dvh; max-height: 100dvh; border-width: 0; border-radius: 0; }
  .aw-modal-mobile-full .aw-modal-header { padding-top: max(1rem, env(safe-area-inset-top)); }
  .aw-modal-mobile-full .aw-modal-footer { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .aw-modal:not(.aw-modal-mobile-full) .aw-modal-surface { width: calc(100vw - 1rem); max-height: calc(100dvh - 1rem); border-radius: 1.2rem; }
  .aw-modal-body, .aw-modal-header, .aw-modal-footer { padding-inline: 1rem; }
  .aw-choice { min-height: 3.85rem; }
  .aw-intelligence-status { white-space: normal; }
  .aw-processing-grid { grid-template-columns: 1fr; }
  .aw-intelligence-panel { padding: .9rem; }
}


@keyframes aw-fade-in {
  from { opacity: 0; transform: translateY(.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aw-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-.25rem); }
  40%, 80% { transform: translateX(.25rem); }
}

.animate-fade-in { animation: aw-fade-in .24s ease-out both; }
.animate-shake { animation: aw-shake .32s ease-in-out; }

@media (forced-colors: active) {
  .aw-card, .aw-product-hero, .aw-modal-surface, .aw-primary-button, .aw-secondary-button, .aw-intelligence-card, .aw-intelligence-panel, .aw-processing-choice { border: 1px solid CanvasText; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* Compact, traveler-first airport updates. */
.aw-update-details { border-top: 1px solid rgba(148,163,184,.14); padding-top: .8rem; }
.aw-update-details > summary { display:flex; min-height:2.75rem; cursor:pointer; list-style:none; align-items:center; justify-content:space-between; gap:.75rem; border-radius:.85rem; color:rgb(191 219 254); font-size:.75rem; font-weight:800; letter-spacing:.01em; }
.aw-update-details > summary::-webkit-details-marker { display:none; }
.aw-update-details > summary::after { content:'+'; display:inline-flex; height:1.65rem; width:1.65rem; flex:0 0 auto; align-items:center; justify-content:center; border:1px solid rgba(148,163,184,.16); border-radius:999px; background:rgba(15,23,42,.65); color:rgb(203 213 225); font-size:1rem; line-height:1; }
.aw-update-details[open] > summary::after { content:'−'; }
.aw-update-details > summary:focus-visible { outline:3px solid rgba(96,165,250,.55); outline-offset:3px; }

/* Portable-release utility coverage for source additions after the previous standard build. */
.h-3\.5{height:.875rem}.w-3\.5{width:.875rem}.leading-4{line-height:1rem}.gap-x-4{column-gap:1rem}
.border-amber-300\/15{border-color:rgb(252 211 77 / .15)}.border-blue-300\/15{border-color:rgb(147 197 253 / .15)}.border-cyan-400\/15{border-color:rgb(34 211 238 / .15)}
.bg-amber-300\/\[0\.055\]{background-color:rgb(252 211 77 / .055)}.bg-blue-300\/\[0\.055\]{background-color:rgb(147 197 253 / .055)}.bg-cyan-400\/\[0\.055\]{background-color:rgb(34 211 238 / .055)}
.text-amber-100\/85{color:rgb(254 243 199 / .85)}.text-blue-100\/85{color:rgb(219 234 254 / .85)}.text-cyan-100\/80{color:rgb(207 250 254 / .8)}
@media(min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(min-width:1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1280px){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}

