/*! ironframe | MIT License | https://finitefield.com/en/oss/ironframe/ */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-xs: 20rem;
    --container-7xl: 80rem;
    --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);
    --font-weight-semibold: 600;
    --font-weight-extrabold: 800;
    --tracking-normal: 0em;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-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;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-5 {
    margin-top: calc(var(--spacing) * 5);
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .max-w-7xl {
    max-width: var(--container-7xl);
  }
  .max-w-xs {
    max-width: var(--container-xs);
  }
  .min-w-0 {
    min-width: calc(var(--spacing) * 0);
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .items-center {
    align-items: center;
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-10 {
    gap: calc(var(--spacing) * 10);
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .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);
    }
  }
  .object-contain {
    object-fit: contain;
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }
  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .leading-7 {
    --tw-leading: calc(var(--spacing) * 7);
    line-height: calc(var(--spacing) * 7);
  }
  .font-extrabold {
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: var(--font-weight-extrabold);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .tracking-normal {
    --tw-tracking: var(--tracking-normal);
    letter-spacing: var(--tracking-normal);
  }
  .text-white\/38 {
    color: color-mix(in srgb, #fff 38%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      color: color-mix(in oklab, var(--color-white) 38%, transparent);
    }
  }
  .text-white\/48 {
    color: color-mix(in srgb, #fff 48%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      color: color-mix(in oklab, var(--color-white) 48%, transparent);
    }
  }
  .uppercase {
    text-transform: uppercase;
  }
  .sm\:grid-cols-3 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .sm\:px-6 {
    @media (width >= 40rem) {
      padding-inline: calc(var(--spacing) * 6);
    }
  }
  .lg\:col-span-2 {
    @media (width >= 64rem) {
      grid-column: span 2 / span 2;
    }
  }
  .lg\:grid-cols-\[minmax\(0\,1fr\)_minmax\(0\,2fr\)\] {
    @media (width >= 64rem) {
      grid-template-columns: minmax(0,1fr) minmax(0,2fr);
    }
  }
  .lg\:px-8 {
    @media (width >= 64rem) {
      padding-inline: calc(var(--spacing) * 8);
    }
  }
}
:root {
  color-scheme: light;
  --ff-ink: #071b22;
  --ff-ink-2: #0b2630;
  --ff-ink-3: #123943;
  --ff-paper: #f4f7f3;
  --ff-paper-2: #e9f0eb;
  --ff-mint: #8ff0d0;
  --ff-mint-2: #55d6b0;
  --ff-teal: #1fa782;
  --ff-muted: #688087;
  --ff-line: rgba(7, 27, 34, .13);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ff-paper);
  color: var(--ff-ink);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--ff-paper); color: var(--ff-ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { cursor: pointer; }
.ff-home { min-width: 0; overflow-x: hidden; background: var(--ff-paper); }
.ff-container { width: min(calc(100% - 32px), 1280px); margin: 0 auto; }
.ff-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(7,27,34,.96); color: #fff; backdrop-filter: blur(18px); }
.ff-header-inner { display: flex; min-height: 76px; align-items: center; gap: 28px; }
.ff-header-brand { display: inline-flex; min-width: 0; align-items: center; gap: 12px; }
.ff-header-brand img { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 8px; }
.ff-brand-copy { display: grid; min-width: 0; gap: 3px; }
.ff-brand-name { overflow: hidden; color: #fff; font-size: 14px; font-weight: 850; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; }
.ff-brand-tagline { color: rgba(255,255,255,.52); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.ff-header-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: clamp(14px, 2.4vw, 34px); font-size: 12px; font-weight: 750; }
.ff-header-nav a, .ff-mobile-menu a { position: relative; color: rgba(255,255,255,.72); transition: color .2s ease; white-space: nowrap; }
.ff-header-nav a::after { position: absolute; right: 100%; bottom: -8px; left: 0; height: 1px; background: var(--ff-mint); content: ""; transition: right .2s ease; }
.ff-header-nav a:hover, .ff-header-nav a:focus-visible, .ff-mobile-menu a:hover, .ff-mobile-menu a:focus-visible { color: #fff; }
.ff-header-nav a:hover::after, .ff-header-nav a:focus-visible::after { right: 0; }
.ff-header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.ff-header-cta, .ff-button-primary { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; background: var(--ff-mint); color: var(--ff-ink); font-size: 12px; font-weight: 850; padding: 0 16px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.ff-header-cta:hover, .ff-button-primary:hover, .ff-header-cta:focus-visible, .ff-button-primary:focus-visible { background: #a6f6dc; box-shadow: 0 16px 36px rgba(85,214,176,.2); transform: translateY(-2px); }
.ff-header-cta svg, .ff-button-primary svg { width: 15px; height: 15px; }
.ff-language-menu { position: relative; }
.ff-language-menu summary { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.8); list-style: none; }
.ff-language-menu summary::-webkit-details-marker { display: none; }
.ff-language-menu summary svg { width: 17px; height: 17px; }
.ff-language-panel { position: absolute; top: calc(100% + 8px); right: 0; display: grid; min-width: 150px; gap: 4px; border: 1px solid #d7e0dc; border-radius: 10px; background: #fff; box-shadow: 0 18px 44px rgba(7,27,34,.18); padding: 8px; }
.ff-language-panel a { border-radius: 7px; color: #40524d; font-size: 12px; font-weight: 750; padding: 9px 10px; }
.ff-language-panel a:hover, .ff-language-panel a:focus-visible { background: #eef7f2; color: var(--ff-ink); }
.ff-menu-button { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: #fff; }
.ff-menu-button svg { width: 19px; height: 19px; }
.ff-mobile-menu { border-top: 1px solid rgba(255,255,255,.1); background: var(--ff-ink); padding: 12px 0 18px; }
.ff-mobile-menu-inner { display: grid; gap: 4px; font-size: 13px; font-weight: 800; }
.ff-mobile-menu a { min-height: 44px; border-radius: 8px; padding: 12px; }
.ff-mobile-menu a:hover, .ff-mobile-menu a:focus-visible { background: rgba(255,255,255,.08); }
.ff-mobile-language { display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; padding: 12px; }
.ff-mobile-language a { min-height: auto; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 12px; }
.ff-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 25%, rgba(85,214,176,.13), transparent 28%), linear-gradient(145deg, var(--ff-ink), var(--ff-ink-2) 58%, #092128); color: #fff; }
.ff-hero::before { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 52px 52px; content: ""; mask-image: linear-gradient(90deg, black, transparent 80%); pointer-events: none; }
.ff-hero-grid { position: relative; z-index: 1; display: grid; min-height: 690px; align-items: center; gap: 56px; padding-top: 78px; padding-bottom: 78px; }
.ff-hero-copy { min-width: 0; }
.ff-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--ff-mint); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ff-kicker::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.ff-kicker-dark { color: var(--ff-teal); }
.ff-hero h1 { max-width: 700px; margin: 28px 0 0; color: #fff; font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.04em; text-wrap: balance; }
.ff-hero-lead { max-width: 640px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.9; }
.ff-hero-actions, .ff-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ff-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 0 20px; font-size: 13px; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.ff-button-ghost { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); color: #fff; }
.ff-button-ghost:hover, .ff-button-ghost:focus-visible { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.ff-button svg { width: 16px; height: 16px; }
.ff-proof-list { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 28px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 750; }
.ff-proof-list span { display: inline-flex; align-items: center; gap: 7px; }
.ff-proof-list svg { width: 15px; height: 15px; color: var(--ff-mint); }
.ff-hero-visual { position: relative; min-width: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(6,23,29,.72); box-shadow: 0 34px 100px rgba(0,0,0,.32); padding: 16px; backdrop-filter: blur(18px); }
.ff-hero-visual::before { position: absolute; z-index: -1; inset: -1px; border-radius: inherit; background: linear-gradient(145deg, rgba(143,240,208,.22), transparent 34%, rgba(129,216,233,.1)); content: ""; filter: blur(18px); opacity: .6; }
.ff-hero-visual-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 3px 14px; }
.ff-hero-visual-top span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ff-hero-visual-top svg { width: 15px; height: 15px; color: var(--ff-mint); }
.ff-hero-visual-top small { color: rgba(255,255,255,.46); font-size: 10px; font-weight: 750; }
.ff-device-stage { position: relative; display: flex; min-height: 400px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: linear-gradient(180deg, #eef4f1, #dbe8e3); padding: 18px 10px; }
.ff-device { position: relative; overflow: hidden; border: 3px solid #0c1e25; border-radius: 25px; background: #f7faf8; box-shadow: 0 16px 28px rgba(7,27,34,.23); }
.ff-device-side { z-index: 1; width: 145px; height: 280px; }
.ff-device-side img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ff-device-left { margin-right: -38px; transform: rotate(-11deg) translateY(13px); }
.ff-device-right { margin-left: -38px; transform: rotate(11deg) translateY(13px); }
.ff-device-center { z-index: 2; width: 190px; height: 360px; border-radius: 30px; background: #101c22; padding: 5px; }
.ff-device-notch { position: absolute; z-index: 2; top: 8px; left: 50%; width: 64px; height: 16px; border-radius: 999px; background: #050b0e; transform: translateX(-50%); }
.ff-device-screen { position: relative; display: grid; gap: 8px; height: 100%; overflow: hidden; border-radius: 24px; background: #f8faf8; color: #263a3d; padding: 25px 10px 8px; }
.ff-device-screen-head { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 850; }
.ff-device-screen-head svg { width: 13px; height: 13px; }
.ff-calendar-head { display: flex; align-items: center; justify-content: space-between; border-radius: 7px; background: #fff; padding: 6px 8px; font-size: 9px; }
.ff-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; border-radius: 7px; background: #fff; padding: 6px; font-size: 7px; text-align: center; }
.ff-calendar-grid span { display: grid; min-height: 14px; place-items: center; }
.ff-calendar-grid span:nth-child(-n+7) { color: #7b8b8d; font-weight: 800; }
.ff-calendar-grid .is-green { border-radius: 3px; background: #20b887; color: #fff; font-weight: 800; }
.ff-calendar-grid .is-red { border-radius: 3px; background: #e35248; color: #fff; font-weight: 800; }
.ff-delivery-card { display: grid; grid-template-columns: 1fr auto; gap: 3px 5px; border-radius: 7px; background: #fff; padding: 7px; font-size: 7px; box-shadow: 0 3px 10px rgba(7,27,34,.07); }
.ff-delivery-card b { font-size: 8px; text-align: right; }
.ff-delivery-card small { grid-column: 1 / -1; color: #718084; font-size: 7px; }
.ff-status { width: fit-content; border-radius: 999px; background: #d9f7ed; color: #087050; font-size: 6px; font-weight: 850; padding: 2px 5px; }
.ff-device-nav { display: flex; align-items: center; justify-content: space-around; margin-top: auto; border-top: 1px solid #e3e9e5; padding-top: 6px; color: #879396; }
.ff-device-nav svg { width: 12px; height: 12px; }
.ff-device-nav svg:nth-child(3) { color: #1fa782; }
.ff-equation { position: absolute; right: -28px; bottom: -32px; max-width: 230px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(10,33,41,.94); color: rgba(255,255,255,.6); font: 11px/1.7 Georgia, serif; padding: 13px 15px; }
.ff-equation b { color: var(--ff-mint); }
.ff-hero-foot { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.09); background: rgba(2,16,21,.3); }
.ff-hero-foot-inner { display: flex; min-height: 70px; align-items: center; gap: 10px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 750; white-space: nowrap; }
.ff-hero-foot-inner > span { margin-right: 6px; color: rgba(255,255,255,.32); letter-spacing: .08em; text-transform: uppercase; }
.ff-hero-foot-inner a { border: 1px solid rgba(143,240,208,.15); border-radius: 999px; background: rgba(255,255,255,.035); padding: 8px 12px; transition: background .2s ease, border-color .2s ease; }
.ff-hero-foot-inner a:hover, .ff-hero-foot-inner a:focus-visible { border-color: rgba(143,240,208,.35); background: rgba(143,240,208,.08); color: #fff; }
.ff-section { padding: 88px 0; }
.ff-section-light { background: var(--ff-paper); }
.ff-section-paper { background: var(--ff-paper-2); }
.ff-section-dark { position: relative; overflow: hidden; background: var(--ff-ink); color: #fff; }
.ff-section-dark::before { position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle, rgba(255,255,255,.24) 1px, transparent 1px); background-size: 22px 22px; content: ""; mask-image: linear-gradient(90deg, black, transparent 78%); pointer-events: none; }
.ff-section-heading { max-width: 720px; }
.ff-section-heading h2 { margin: 16px 0 0; color: var(--ff-ink); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.15; text-wrap: balance; }
.ff-section-heading > p:last-child { margin: 20px 0 0; color: var(--ff-muted); font-size: 16px; line-height: 1.9; }
.ff-on-dark h2 { color: #fff; }
.ff-on-dark > p:last-child { color: rgba(255,255,255,.6); }
.ff-card-grid { display: grid; gap: 16px; margin-top: 44px; }
.ff-card { position: relative; min-height: 230px; overflow: hidden; border: 1px solid var(--ff-line); border-radius: 9px; background: rgba(255,255,255,.62); box-shadow: 0 14px 40px rgba(7,27,34,.05); padding: 22px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.ff-card:hover { background: #fff; box-shadow: 0 20px 54px rgba(7,27,34,.1); transform: translateY(-4px); }
.ff-card-number { display: block; color: rgba(31,167,130,.72); font: italic 24px/1 Georgia, serif; }
.ff-card > svg { position: absolute; top: 22px; right: 22px; width: 25px; height: 25px; color: var(--ff-teal); }
.ff-card h3 { margin: 42px 0 0; font-size: 18px; font-weight: 850; line-height: 1.45; }
.ff-card p { margin: 10px 0 0; color: var(--ff-muted); font-size: 13px; line-height: 1.8; }
.ff-answer-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; border-radius: 9px; background: var(--ff-ink); color: #fff; padding: 24px; }
.ff-answer-panel h3 { margin: 0; font-size: 20px; line-height: 1.4; }
.ff-answer-panel p { margin: 7px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }
.ff-answer-panel > span { color: var(--ff-mint); font: italic 40px/1 Georgia, serif; }
.ff-model-grid, .ff-feature-detail-grid, .ff-faq-grid { position: relative; z-index: 1; display: grid; align-items: center; gap: 48px; }
.ff-model-panel { display: grid; gap: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: rgba(255,255,255,.045); padding: 18px; }
.ff-model-panel > div { display: grid; gap: 12px; border-radius: 8px; background: rgba(255,255,255,.04); padding: 16px; }
.ff-model-panel strong { color: var(--ff-mint); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.ff-model-panel p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.8; }
.ff-model-panel .ff-formula { border: 1px solid rgba(143,240,208,.16); border-radius: 8px; background: rgba(143,240,208,.06); padding: 16px; }
.ff-heading-row { display: grid; align-items: end; gap: 24px; }
.ff-heading-row > p { max-width: 360px; margin: 0; color: var(--ff-muted); font-size: 14px; line-height: 1.8; }
.ff-screen-grid { display: grid; gap: 18px; margin-top: 44px; }
.ff-screen-card { border: 1px solid rgba(7,27,34,.13); border-radius: 9px; background: rgba(255,255,255,.7); padding: 14px; }
.ff-screen-image { display: grid; height: 270px; place-items: center; overflow: hidden; border-radius: 7px; background: linear-gradient(180deg, #f5f8f6, #e9efeb); }
.ff-screen-image img { width: 150px; height: auto; max-height: 255px; object-fit: cover; object-position: top; border: 2px solid #153038; border-radius: 15px; box-shadow: 0 10px 24px rgba(7,27,34,.12); }
.ff-screen-card h3 { margin: 18px 4px 0; font-size: 18px; font-weight: 850; }
.ff-screen-card p { margin: 8px 4px 3px; color: var(--ff-muted); font-size: 13px; line-height: 1.8; }
.ff-step-grid { display: grid; gap: 16px; margin-top: 42px; }
.ff-step { position: relative; min-height: 190px; border: 1px solid var(--ff-line); border-radius: 9px; background: rgba(255,255,255,.7); padding: 22px; }
.ff-step > span { color: var(--ff-teal); font: italic 24px/1 Georgia, serif; }
.ff-step > svg { position: absolute; top: 22px; right: 22px; width: 29px; height: 29px; color: var(--ff-ink); }
.ff-step h3 { margin: 32px 0 0; font-size: 17px; font-weight: 850; }
.ff-step p { margin: 8px 0 0; color: var(--ff-muted); font-size: 13px; line-height: 1.8; }
.ff-feature-detail-grid { color: #fff; }
.ff-feature-detail h2 { margin: 16px 0 0; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.15; }
.ff-feature-detail > .ff-container > div > p, .ff-feature-detail-grid > div > p { max-width: 600px; margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.9; }
.ff-feature-detail ul { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.7; }
.ff-feature-detail li { display: flex; align-items: flex-start; gap: 8px; }
.ff-feature-detail li svg { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 2px; color: var(--ff-mint); }
.ff-detail-image { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.26); }
.ff-detail-image img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.ff-faq-list { display: grid; gap: 12px; }
.ff-faq { border: 1px solid var(--ff-line); border-radius: 9px; background: rgba(255,255,255,.72); padding: 18px 20px; }
.ff-faq summary { cursor: pointer; color: var(--ff-ink); font-size: 15px; font-weight: 850; line-height: 1.55; }
.ff-faq p { margin: 12px 0 0; color: var(--ff-muted); font-size: 13px; line-height: 1.85; }
.ff-contact { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 30%, rgba(85,214,176,.16), transparent 30%), var(--ff-ink); color: #fff; padding: 90px 0; text-align: center; }
.ff-contact::before { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 50px 50px; content: ""; mask-image: linear-gradient(90deg, transparent, black, transparent); }
.ff-contact-inner { position: relative; z-index: 1; }
.ff-contact h2 { max-width: 760px; margin: 16px auto 0; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.15; text-wrap: balance; }
.ff-contact-inner > p:not(.ff-kicker) { max-width: 650px; margin: 20px auto 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.9; }
.ff-contact-actions { justify-content: center; }
.ff-footer { border-top: 1px solid rgba(255,255,255,.1); background: #06171d; color: #fff; }
.ff-footer-grid { display: grid; gap: 42px; padding-top: 52px; padding-bottom: 28px; }
.ff-footer-brand p { max-width: 300px; margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: 13px; font-weight: 650; line-height: 1.8; }
.ff-footer-nav { display: grid; gap: 28px; }
.ff-footer-nav h2 { margin: 0 0 14px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ff-footer-nav a { display: block; width: fit-content; margin-top: 9px; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 650; }
.ff-footer-nav a:hover, .ff-footer-nav a:focus-visible { color: var(--ff-mint); }
.ff-footer-copy { border-top: 1px solid rgba(255,255,255,.1); margin: 0; padding-top: 20px; color: rgba(255,255,255,.38); font-size: 11px; font-weight: 750; letter-spacing: .05em; }
@media (min-width: 720px) {
  .ff-card-grid, .ff-screen-grid, .ff-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ff-footer-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .ff-hero-grid { grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); }
  .ff-model-grid, .ff-feature-detail-grid, .ff-faq-grid { grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); }
  .ff-heading-row { grid-template-columns: minmax(0, 1fr) minmax(240px, 360px); }
  .ff-screen-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ff-step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ff-footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); }
  .ff-footer-copy { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .ff-hero-grid { gap: 72px; }
  .ff-menu-button { display: none; }
}
@media (max-width: 1023px) {
  .ff-header-nav { display: none; }
  .ff-menu-button { display: inline-flex; }
}
@media (max-width: 719px) {
  .ff-container { width: min(calc(100% - 24px), 1280px); }
  .ff-header-inner { min-height: 68px; gap: 9px; }
  .ff-header-brand { flex: 1 1 auto; gap: 8px; }
  .ff-header-brand img { width: 36px; height: 36px; flex-basis: 36px; }
  .ff-brand-name { font-size: 12px; }
  .ff-brand-tagline { font-size: 8px; }
  .ff-header-cta { min-height: 38px; padding: 0 11px; font-size: 11px; }
  .ff-header-cta svg { display: none; }
  .ff-language-menu summary { width: 38px; height: 38px; }
  .ff-hero-grid { min-height: auto; gap: 44px; padding-top: 58px; padding-bottom: 58px; }
  .ff-hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .ff-hero-lead { font-size: 14px; line-height: 1.85; }
  .ff-hero-actions { align-items: stretch; flex-direction: column; }
  .ff-button { width: 100%; }
  .ff-proof-list { display: grid; gap: 9px; }
  .ff-hero-visual { padding: 10px; }
  .ff-device-stage { min-height: 330px; padding: 15px 4px; }
  .ff-device-side { width: 108px; height: 215px; border-width: 2px; border-radius: 18px; }
  .ff-device-center { width: 148px; height: 285px; border-radius: 24px; padding: 4px; }
  .ff-device-screen { border-radius: 20px; padding: 21px 7px 6px; }
  .ff-device-notch { top: 7px; width: 50px; height: 12px; }
  .ff-device-left { margin-right: -29px; }
  .ff-device-right { margin-left: -29px; }
  .ff-equation { display: none; }
  .ff-section { padding: 65px 0; }
  .ff-section-heading h2, .ff-feature-detail h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .ff-heading-row { display: block; }
  .ff-heading-row > p { margin-top: 18px; }
  .ff-answer-panel { align-items: flex-start; }
  .ff-answer-panel > span { display: none; }
  .ff-detail-image img { min-height: 230px; }
  .ff-contact { padding: 70px 0; }
}
@media (max-width: 420px) {
  .ff-language-menu { display: none; }
  .ff-device-side { width: 95px; height: 190px; }
  .ff-device-center { width: 136px; height: 270px; }
  .ff-device-left { margin-right: -24px; }
  .ff-device-right { margin-left: -24px; }
  .ff-device-screen-head { font-size: 8px; }
  .ff-calendar-grid { gap: 2px; padding: 4px; font-size: 6px; }
  .ff-calendar-grid span { min-height: 12px; }
}
/* Shared Finite Field renewal header and footer */
.ff-renewal-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(7, 27, 34, .94);
  color: #fff;
  backdrop-filter: blur(18px);
}
.ff-renewal-site-header[data-renewal-header] { position: sticky !important; height: auto !important; }
.ff-renewal-header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 16px;
}
.ff-renewal-site-header[data-renewal-header] .ff-renewal-header-inner { height: 68px !important; min-height: 68px !important; }
.ff-renewal-header-brand { display: flex; min-width: 0; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.ff-renewal-header-brand img { display: block; width: 40px; height: 40px; flex: 0 0 auto; object-fit: contain; }
.ff-renewal-brand-name { display: block; color: #fff; font-size: 14px; font-weight: 850; line-height: 1.15; letter-spacing: 0; }
.ff-renewal-header-nav { display: none; align-items: center; gap: 14px; margin-left: auto; font-size: 12px; font-weight: 800; line-height: 1; }
.ff-renewal-header-link { display: inline-flex; min-height: 44px; align-items: center; color: rgba(255, 255, 255, .68); padding: 0 4px; text-decoration: none; white-space: nowrap; transition: color .2s ease, transform .2s ease; }
.ff-renewal-header-link:hover, .ff-renewal-header-link:focus-visible, .ff-renewal-header-link[aria-current="page"] { color: #8ff0d0; }
.ff-renewal-header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.ff-renewal-header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #8ff0d0;
  color: #071b22 !important;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(85, 214, 176, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ff-renewal-header-action:hover, .ff-renewal-header-action:focus-visible { background: #a6f6dc; color: #071b22 !important; box-shadow: 0 22px 48px rgba(85, 214, 176, .25); transform: translateY(-2px); }
.ff-renewal-header-action [data-lucide] { width: 16px; height: 16px; flex: 0 0 auto; }
.ff-renewal-language-menu { position: relative; z-index: 1; flex: 0 0 auto; }
.ff-renewal-language-trigger {
  display: inline-flex;
  width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  list-style: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.ff-renewal-language-trigger:hover, .ff-renewal-language-trigger:focus-visible, .ff-renewal-language-menu[data-open="true"] .ff-renewal-language-trigger { border-color: rgba(143, 240, 208, .55); background: rgba(143, 240, 208, .12); color: #8ff0d0; }
.ff-renewal-language-trigger [data-lucide] { width: 18px; height: 18px; flex: 0 0 auto; }
.ff-renewal-language-panel {
  position: absolute;
  z-index: 1001;
  top: calc(100% + 10px);
  right: 0;
  width: 224px;
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(6, 26, 33, .12);
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 24px 56px rgba(4, 24, 31, .2);
}
.ff-renewal-language-panel[hidden], .ff-renewal-mobile-menu[hidden] { display: none; }
.ff-renewal-language-panel a { display: block; border-radius: 10px; padding: 10px 12px; color: #475569; font-size: 13px; font-weight: 750; line-height: 1.35; text-decoration: none; }
.ff-renewal-language-panel a:hover, .ff-renewal-language-panel a:focus-visible, .ff-renewal-language-panel a[aria-current="page"] { background: #f1f5f9; color: #0f172a; }
.ff-renewal-menu-button { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; background: rgba(255, 255, 255, .05); color: #fff; }
.ff-renewal-menu-button [data-lucide] { width: 20px; height: 20px; }
.ff-renewal-mobile-menu { border-top: 1px solid rgba(255, 255, 255, .1); background: #071b22; padding: 14px 16px 16px; }
.ff-renewal-mobile-menu-inner { display: grid; gap: 4px; max-width: 80rem; margin: 0 auto; font-size: 13px; font-weight: 800; }
.ff-renewal-mobile-menu .ff-renewal-header-link { min-height: 44px; border-radius: 8px; padding: 0 12px; }
.ff-renewal-mobile-menu .ff-renewal-header-link:hover, .ff-renewal-mobile-menu .ff-renewal-header-link:focus-visible { background: rgba(255, 255, 255, .08); }
.ff-footer-link { display: block; color: rgba(255, 255, 255, .62); transition: color .2s ease; }
.ff-footer-link:hover, .ff-footer-link:focus-visible { color: #8ff0d0; }
.ff-footer-group-title { margin: 0; color: rgba(255, 255, 255, .92); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ff-footer-links { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-top: 16px; font-size: 13px; font-weight: 700; }
.ff-app-downloads { margin-top: 24px; }
.ff-app-downloads > p { margin: 0 0 10px; color: rgba(255, 255, 255, .58); font-size: 12px; font-weight: 750; }
.ff-app-downloads-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.ff-app-downloads-links a { display: inline-flex; border-radius: 7px; transition: transform .2s ease, opacity .2s ease; }
.ff-app-downloads-links a:hover, .ff-app-downloads-links a:focus-visible { opacity: .86; transform: translateY(-2px); }
.ff-app-downloads-links img { width: auto; height: 40px; max-width: 100%; }
@media (min-width: 640px) {
  .ff-renewal-header-inner { padding: 0 24px; }
}
@media (min-width: 1024px) {
  .ff-renewal-header-nav { display: flex; }
  .ff-renewal-menu-button { display: none; }
}
@media (max-width: 1023px) {
  .ff-renewal-menu-button { display: inline-flex; }
}
@media (max-width: 520px) {
  .ff-renewal-header-inner { gap: 10px; padding: 0 12px; }
  .ff-renewal-header-brand { flex: 0 0 auto; gap: 0; }
  .ff-renewal-brand-name { display: none; }
  .ff-renewal-header-action { min-height: 42px; padding: 0 12px; font-size: 12px; }
  .ff-renewal-header-action [data-lucide] { width: 14px; height: 14px; }
  .ff-renewal-language-trigger { width: 42px; min-height: 42px; }
  .ff-renewal-language-trigger [data-lucide] { width: 17px; height: 17px; }
  .ff-app-downloads-links { gap: 8px; }
  .ff-app-downloads-links img { height: 36px; }
}
/* Car Delivery Schedule Field landing page */
:root {
  --app-ink: #1b2733;
  --app-muted: #5f6873;
  --app-green: #20b96b;
  --app-green-dark: #12965a;
  --app-red: #cc2535;
  --app-blue: #233c9b;
  --app-line: #e4e8ee;
  --app-soft: #f7f8fb;
  --app-shadow: 0 14px 36px rgba(31, 48, 66, .07);
}
html { scroll-padding-top: 76px; }
body { background: #fff; color: var(--app-ink); }
.app-page { min-width: 0; overflow-x: hidden; background: #fff; color: var(--app-ink); }
.app-page a { color: inherit; }
.app-container { width: min(calc(100% - 64px), 1200px); margin: 0 auto; }
.app-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.app-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--app-line);
  background: rgba(255, 255, 255, .96);
  color: var(--app-ink);
  backdrop-filter: blur(16px);
}
.app-header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 56px), 1280px);
  margin: 0 auto;
}
.app-header-brand {
  display: inline-flex;
  min-width: 218px;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.app-brand-logo { display: block; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 7px; object-fit: contain; }
.app-brand-copy { display: grid; min-width: 0; gap: 2px; }
.app-brand-name { overflow: hidden; color: var(--app-ink); font-size: 14px; font-weight: 850; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.app-brand-tagline { color: #64707a; font-family: Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .02em; line-height: 1.15; white-space: nowrap; }
.app-header-nav { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; gap: clamp(22px, 3.5vw, 48px); font-size: 12px; font-weight: 750; }
.app-header-link { position: relative; display: inline-flex; min-height: 70px; align-items: center; color: #3e464e; text-decoration: none; white-space: nowrap; }
.app-header-link::after { position: absolute; right: 100%; bottom: 19px; left: 0; height: 2px; border-radius: 999px; background: var(--app-green); content: ""; transition: right .2s ease; }
.app-header-link:hover, .app-header-link:focus-visible { color: var(--app-green-dark); }
.app-header-link:hover::after, .app-header-link:focus-visible::after { right: 0; }
.app-header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.app-language-links { display: inline-flex; align-items: center; color: #69737c; font-family: Arial, sans-serif; font-size: 10px; font-weight: 750; white-space: nowrap; }
.app-language-links a { text-decoration: none; }
.app-language-links a + a::before { margin: 0 8px; color: #c4cbd1; content: "|"; }
.app-language-links a:hover, .app-language-links a:focus-visible, .app-language-links a[aria-current="page"] { color: var(--app-green-dark); }
.app-header-cta { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; border: 1px solid var(--app-green); border-radius: 6px; background: var(--app-green); color: #fff !important; padding: 0 17px; font-size: 12px; font-weight: 850; text-decoration: none; transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.app-header-cta:hover, .app-header-cta:focus-visible { background: var(--app-green-dark); box-shadow: 0 8px 20px rgba(32, 185, 107, .22); transform: translateY(-1px); }
.app-menu-button { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--app-line); border-radius: 6px; background: #fff; color: var(--app-ink); }
.app-menu-button svg { width: 19px; height: 19px; }
.app-mobile-menu { border-top: 1px solid var(--app-line); background: #fff; padding: 12px 0 16px; }
.app-mobile-menu[hidden] { display: none; }
.app-mobile-menu-inner { display: grid; gap: 2px; width: min(calc(100% - 32px), 720px); margin: 0 auto; font-size: 13px; font-weight: 750; }
.app-mobile-menu-inner > a { min-height: 44px; display: flex; align-items: center; border-radius: 6px; padding: 0 12px; text-decoration: none; }
.app-mobile-menu-inner > a:hover, .app-mobile-menu-inner > a:focus-visible { background: var(--app-soft); color: var(--app-green-dark); }
.app-mobile-language { display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--app-line); margin-top: 8px; padding: 14px 12px 0; font-family: Arial, sans-serif; font-size: 11px; }
.app-mobile-language a { border: 1px solid var(--app-line); border-radius: 999px; padding: 7px 12px; text-decoration: none; }
.app-mobile-language a[aria-current="page"] { border-color: var(--app-green); color: var(--app-green-dark); }
.app-hero { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfcff 100%); }
.app-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 44px; min-height: 540px; padding-top: 58px; padding-bottom: 52px; }
.app-hero-copy { position: relative; z-index: 2; min-width: 0; }
.app-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0; color: #69737d; font-family: Arial, sans-serif; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.app-eyebrow::before { width: 20px; height: 2px; border-radius: 999px; background: currentColor; content: ""; }
.app-eyebrow-green { color: var(--app-green); }
.app-hero-copy > .app-eyebrow { display: none; }
.app-hero h1 { max-width: 650px; margin: 0; color: var(--app-ink); font-size: clamp(2.2rem, 3.8vw, 3.35rem); font-weight: 900; letter-spacing: -.065em; line-height: 1.25; text-wrap: wrap; }
.app-hero h1 span { display: block; }
.app-hero-lead { max-width: 560px; margin: 24px 0 0; color: #525d68; font-size: 14px; line-height: 2; }
.app-store-downloads { margin-top: 26px; }
.app-store-downloads > p { margin: 0 0 10px; color: #6c7680; font-size: 10px; font-weight: 750; }
.app-store-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.app-store-links a { display: inline-flex; border-radius: 6px; transition: transform .2s ease, opacity .2s ease; }
.app-store-links a:hover, .app-store-links a:focus-visible { opacity: .82; transform: translateY(-2px); }
.app-store-links img { width: auto; height: 42px; max-width: 100%; }
.app-text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: #6d7780 !important; font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.app-text-link:hover, .app-text-link:focus-visible { color: var(--app-green-dark) !important; }
.app-text-link svg { width: 14px; height: 14px; }
.app-hero-visual { position: relative; min-width: 0; }
.app-phone-stage { position: relative; display: flex; min-height: 460px; align-items: center; justify-content: center; padding: 30px 0; }
.app-phone { position: relative; flex: 0 0 auto; overflow: hidden; margin: 0; border: 3px solid #121b23; border-radius: 28px; background: #f8f9fb; box-shadow: 0 20px 35px rgba(31, 48, 66, .2); }
.app-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.app-phone-side { z-index: 1; width: 176px; height: 340px; }
.app-phone-left { margin-right: -45px; transform: rotate(-11deg) translateY(14px); }
.app-phone-right { margin-left: -45px; transform: rotate(11deg) translateY(14px); }
.app-phone-center { z-index: 2; width: 232px; height: 432px; border-width: 4px; border-radius: 35px; background: #111a21; padding: 5px; }
.app-phone-center img { border-radius: 27px; }
.app-phone-speaker { position: absolute; z-index: 2; top: 11px; left: 50%; width: 68px; height: 16px; border-radius: 999px; background: #05090d; transform: translateX(-50%); }
.app-phone-ui { display: flex; height: 100%; flex-direction: column; gap: 7px; overflow: hidden; border-radius: 27px; background: #f8fafc; color: #2e3a42; padding: 25px 9px 7px; }
.app-phone-ui-title { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 850; }
.app-phone-ui-title svg { width: 13px; height: 13px; }
.app-calendar-widget { border-radius: 7px; background: #fff; padding: 7px 5px 5px; box-shadow: 0 2px 7px rgba(31, 48, 66, .04); }
.app-calendar-month { display: flex; align-items: center; justify-content: space-between; color: #65717b; font-size: 7px; }
.app-calendar-month strong { color: #2e3a42; font-size: 8px; }
.app-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 2px; margin-top: 5px; font-family: Arial, sans-serif; font-size: 6px; text-align: center; }
.app-calendar-grid span { display: grid; min-height: 12px; place-items: center; border-radius: 3px; }
.app-calendar-days span { color: #8b969e; font-size: 5px; font-weight: 700; }
.app-calendar-grid .is-green { background: #1fbd8b; color: #fff; font-weight: 800; }
.app-calendar-grid .is-blue { background: #2674d9; color: #fff; font-weight: 800; }
.app-calendar-grid .is-red { background: #e34843; color: #fff; font-weight: 800; }
.app-delivery-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 5px; border-radius: 7px; background: #fff; padding: 6px; font-size: 6px; box-shadow: 0 2px 7px rgba(31, 48, 66, .04); }
.app-delivery-card b { font-size: 7px; text-align: right; }
.app-delivery-card small { grid-column: 1 / -1; overflow: hidden; color: #748089; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.app-status-pill { width: fit-content; border-radius: 999px; background: #d6f6e9; color: #07835b; font-size: 5px; font-weight: 850; padding: 2px 5px; }
.app-phone-ui-nav { display: flex; align-items: center; justify-content: space-around; margin-top: auto; border-top: 1px solid #e4e9ee; padding-top: 5px; color: #9aa4aa; }
.app-phone-ui-nav svg { width: 11px; height: 11px; }
.app-phone-ui-nav svg:nth-child(3) { color: var(--app-green); }
.app-category-band { border-top: 1px solid #eff1f4; border-bottom: 1px solid #e9edf1; background: #f8f9fc; padding: 26px 0 30px; }
.app-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.app-category-card { min-height: 130px; border: 1px solid #edf0f4; border-radius: 12px; background: #fff; box-shadow: var(--app-shadow); padding: 18px 20px; }
.app-category-card svg { width: 23px; height: 23px; color: var(--app-green); stroke-width: 2.3; }
.app-category-card h3 { display: inline; margin: 0 0 0 12px; color: var(--app-ink); font-size: 14px; font-weight: 850; vertical-align: 4px; }
.app-category-list { display: grid; gap: 4px; margin: 12px 0 0; padding: 0; list-style: none; color: #4f5963; font-size: 11px; line-height: 1.55; }
.app-category-list li { display: flex; min-width: 0; gap: 6px; }
.app-category-list li::before { flex: 0 0 auto; color: var(--app-ink); content: "•"; }
.app-section { padding: 76px 0; }
.app-feature-section { background: #fff; }
.app-feature-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: center; gap: 68px; }
.app-feature-copy h2, .app-centered-heading h2, .app-contact-copy h2 { margin: 14px 0 0; color: var(--app-ink); font-size: clamp(1.9rem, 3.2vw, 2.75rem); font-weight: 900; letter-spacing: -.055em; line-height: 1.28; text-wrap: balance; }
.app-section-lead { max-width: 600px; margin: 18px 0 0; color: #626d77; font-size: 13px; line-height: 1.9; }
.app-check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 30px; margin: 24px 0 0; padding: 0; list-style: none; color: #4b5661; font-size: 11px; line-height: 1.6; }
.app-check-list li { display: flex; min-width: 0; align-items: flex-start; gap: 7px; }
.app-check-list svg { flex: 0 0 15px; width: 15px; height: 15px; margin-top: 1px; color: var(--app-green); stroke-width: 2.8; }
.app-feature-image { overflow: hidden; min-height: 286px; margin: 0; border-radius: 18px; box-shadow: 0 16px 34px rgba(31, 48, 66, .12); }
.app-feature-image img { width: 100%; height: 100%; min-height: 286px; object-fit: cover; object-position: center; }
.app-screens-section, .app-faq-section { background: var(--app-soft); }
.app-centered-heading { max-width: 740px; margin: 0 auto; text-align: center; }
.app-centered-heading .app-eyebrow { justify-content: center; }
.app-centered-heading > p:last-child { margin: 14px auto 0; color: #66717c; font-size: 13px; line-height: 1.85; }
.app-centered-heading > p:last-child:empty { display: none; }
.app-screens-section .app-centered-heading .app-eyebrow,
.app-steps-section .app-centered-heading .app-eyebrow,
.app-faq-section .app-centered-heading .app-eyebrow,
.app-contact-copy .app-eyebrow { display: none; }
.app-screens-section .app-centered-heading h2,
.app-steps-section .app-centered-heading h2,
.app-faq-section .app-centered-heading h2 { margin-top: 0; }
.app-screen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.app-screen-card { min-width: 0; border: 1px solid #dee4eb; border-radius: 12px; background: #fff; padding: 12px; box-shadow: 0 8px 22px rgba(31, 48, 66, .03); }
.app-screen-image { display: flex; height: 250px; align-items: center; justify-content: center; overflow: hidden; border-radius: 8px; background: linear-gradient(180deg, #f2f4f8, #e9edf3); }
.app-screen-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.app-screen-card h3 { margin: 17px 4px 0; color: var(--app-ink); font-size: 16px; font-weight: 850; }
.app-screen-card p { margin: 7px 4px 4px; color: #68737d; font-size: 11px; line-height: 1.8; }
.app-steps-section { background: #fff; }
.app-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.app-step-card { position: relative; min-height: 174px; border: 1px solid #e0e5eb; border-radius: 12px; background: #fff; padding: 18px 20px; }
.app-step-number { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 999px; background: var(--app-green); color: #fff; font-family: Arial, sans-serif; font-size: 16px; font-weight: 850; }
.app-step-icon { position: absolute; right: 20px; bottom: 18px; color: var(--app-ink); }
.app-step-icon svg { width: 29px; height: 29px; stroke-width: 1.8; }
.app-step-arrow { position: absolute; z-index: 2; top: 50%; right: -31px; width: 22px; height: 22px; color: #7c8790; transform: translateY(-50%); }
.app-step-card h3 { margin: 17px 0 0; color: var(--app-ink); font-size: 14px; font-weight: 850; }
.app-step-card p { max-width: 260px; margin: 6px 45px 0 0; color: #68737d; font-size: 11px; line-height: 1.75; }
.app-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 14px; margin-top: 34px; }
.app-faq-card { min-width: 0; border: 1px solid #dee4eb; border-radius: 10px; background: #fff; padding: 0 17px; }
.app-faq-card summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; color: var(--app-ink); cursor: pointer; font-size: 12px; font-weight: 850; list-style: none; }
.app-faq-card summary::-webkit-details-marker { display: none; }
.app-faq-card summary svg { flex: 0 0 15px; width: 15px; height: 15px; color: #74808a; transition: transform .2s ease; }
.app-faq-card[open] summary svg { transform: rotate(180deg); }
.app-faq-card p { margin: 0; border-top: 1px solid #edf0f3; padding: 11px 0 14px; color: #68737d; font-size: 11px; line-height: 1.75; }
.app-contact-section { border-top: 1px solid #e3e8ed; background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%); padding: 26px 0; }
.app-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; border: 1px solid #e1e6ec; border-radius: 12px; background: #fff; padding: 22px 28px; }
.app-contact-copy { min-width: 0; }
.app-contact-copy h2 { margin-top: 8px; font-size: clamp(1.35rem, 2.8vw, 2rem); }
.app-contact-copy > p:last-child { margin: 7px 0 0; color: #68737d; font-size: 11px; line-height: 1.7; }
.app-contact-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.app-contact-actions .app-store-links { flex-wrap: nowrap; }
.app-contact-actions .app-store-links img { height: 40px; }
@media (max-width: 1023px) {
  .app-header-nav { gap: 20px; }
  .app-header-brand { min-width: 188px; }
  .app-header-inner { width: min(calc(100% - 40px), 1280px); gap: 16px; }
  .app-hero-grid { gap: 24px; }
  .app-phone-side { width: 145px; height: 290px; }
  .app-phone-center { width: 202px; height: 382px; }
  .app-phone-left { margin-right: -38px; }
  .app-phone-right { margin-left: -38px; }
  .app-feature-grid { gap: 40px; }
  .app-contact-inner { align-items: flex-start; flex-direction: column; }
  .app-contact-actions { width: 100%; justify-content: space-between; }
}
@media (min-width: 821px) and (max-width: 1100px) {
  .app-container { width: min(calc(100% - 56px), 880px); }
  .app-contact-section > .app-container { width: min(calc(100% - 32px), 1200px); }
  .app-header-inner { width: min(calc(100% - 56px), 880px); min-height: 58px; gap: 13px; }
  .app-header-brand { min-width: 174px; gap: 8px; }
  .app-brand-logo { flex-basis: 28px; width: 28px; height: 28px; }
  .app-brand-name { font-size: 12px; }
  .app-brand-tagline { font-size: 7px; }
  .app-header-nav { gap: 22px; font-size: 10px; }
  .app-header-link { min-height: 58px; }
  .app-header-link::after { bottom: 13px; }
  .app-header-actions { gap: 9px; }
  .app-language-links { font-size: 9px; }
  .app-language-links a + a::before { margin: 0 5px; }
  .app-header-cta { min-height: 34px; padding: 0 12px; font-size: 10px; }
  .app-hero-grid { min-height: 0; gap: 20px; padding-top: 0; padding-bottom: 49px; }
  .app-hero-copy { align-self: start; padding: 35px 0 0 16px; }
  .app-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.25rem); line-height: 1.25; }
  .app-hero-lead { margin-top: 15px; font-size: 11px; line-height: 1.72; }
  .app-store-downloads { margin-top: 17px; }
  .app-store-downloads > p { margin-bottom: 6px; font-size: 9px; }
  .app-store-links { gap: 8px; }
  .app-store-links img { height: 37px; }
  .app-text-link { margin-top: 14px; font-size: 10px; }
  .app-phone-stage { min-height: 350px; padding: 14px 0; }
  .app-phone-stage { transform: translateX(-5px); }
  .app-phone-side { width: 150px; height: 290px; border-width: 2px; border-radius: 21px; }
  .app-phone-center { width: 180px; height: 340px; border-width: 3px; border-radius: 27px; padding: 4px; }
  .app-phone-center img { border-radius: 20px; }
  .app-phone-speaker { top: 8px; width: 54px; height: 12px; }
  .app-phone-ui { gap: 5px; border-radius: 20px; padding: 20px 6px 5px; }
  .app-phone-ui-title { font-size: 8px; }
  .app-phone-ui-title svg { width: 10px; height: 10px; }
  .app-calendar-widget { padding: 5px 4px 4px; }
  .app-calendar-month { font-size: 6px; }
  .app-calendar-month strong { font-size: 6px; }
  .app-calendar-grid { gap: 1px; margin-top: 3px; font-size: 5px; }
  .app-calendar-grid span { min-height: 9px; border-radius: 2px; }
  .app-calendar-days span { font-size: 4px; }
  .app-delivery-card { gap: 1px 3px; padding: 4px; font-size: 5px; }
  .app-delivery-card b { font-size: 5px; }
  .app-delivery-card small { font-size: 5px; }
  .app-status-pill { font-size: 4px; padding: 1px 3px; }
  .app-phone-ui-nav { padding-top: 3px; }
  .app-phone-ui-nav svg { width: 8px; height: 8px; }
  .app-phone-left { margin-right: -15px; }
  .app-phone-right { margin-left: -15px; }
  .app-category-band { padding: 12px 0 15px; }
  .app-category-grid { gap: 12px; }
  .app-category-card { min-height: 112px; padding: 12px 14px; }
  .app-category-card svg { width: 19px; height: 19px; }
  .app-category-card h3 { margin-left: 8px; font-size: 12px; vertical-align: 3px; }
  .app-category-list { gap: 2px; margin-top: 7px; font-size: 8.5px; line-height: 1.4; }
  .app-section { padding: 24px 0; }
  .app-feature-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr); gap: 42px; }
  .app-feature-copy h2, .app-centered-heading h2, .app-contact-copy h2 { margin-top: 7px; font-size: clamp(1.45rem, 2.6vw, 1.85rem); }
  .app-section-lead { margin-top: 11px; font-size: 10px; line-height: 1.7; }
  .app-check-list { gap: 5px 18px; margin-top: 15px; font-size: 9px; line-height: 1.4; }
  .app-check-list svg { width: 12px; height: 12px; flex-basis: 12px; }
  .app-feature-image, .app-feature-image img { min-height: 210px; }
  .app-centered-heading > p:last-child { margin-top: 8px; font-size: 10px; line-height: 1.6; }
  .app-screen-grid, .app-step-grid { gap: 12px; margin-top: 14px; }
  .app-screen-card { padding: 8px; }
  .app-screen-image { height: 145px; }
  .app-screen-card h3 { margin-top: 10px; font-size: 13px; }
  .app-screen-card p { margin-top: 4px; font-size: 9px; line-height: 1.55; }
  .app-step-card { min-height: 96px; padding: 10px 12px; }
  .app-step-number { width: 23px; height: 23px; font-size: 11px; }
  .app-step-icon { right: 12px; bottom: 10px; }
  .app-step-icon svg { width: 20px; height: 20px; }
  .app-step-card h3 { margin-top: 8px; font-size: 10px; }
  .app-step-card p { margin-top: 3px; font-size: 8px; line-height: 1.4; }
  .app-step-arrow { right: -25px; width: 17px; height: 17px; }
  .app-faq-grid { gap: 6px 10px; margin-top: 14px; }
  .app-faq-card { padding: 0 12px; }
  .app-faq-card summary { min-height: 28px; font-size: 9px; }
  .app-faq-card summary svg { width: 12px; height: 12px; }
  .app-faq-card p { padding: 4px 0 6px; font-size: 8px; line-height: 1.35; }
  .app-contact-section { padding: 8px 0; }
  .app-contact-inner { align-items: center; flex-direction: row; gap: 15px; padding: 10px 72px; }
  .app-contact-copy h2 { font-size: 1.35rem; }
  .app-contact-copy > p:last-child { margin-top: 3px; font-size: 8px; }
  .app-contact-actions { width: auto; justify-content: initial; gap: 9px; }
  .app-contact-actions .app-store-links img { height: 40px; }
}
@media (max-width: 820px) {
  .app-header-nav { display: none; }
  .app-menu-button { display: inline-flex; }
  .app-header-inner { justify-content: space-between; }
  .app-header-brand { flex: 1 1 auto; }
  .app-hero-grid { grid-template-columns: minmax(0, 1fr); padding-top: 44px; }
  .app-hero-copy { max-width: 650px; margin: 0 auto; text-align: center; }
  .app-hero .app-store-links, .app-hero .app-text-link { justify-content: center; }
  .app-hero-visual { max-width: 600px; width: 100%; margin: 0 auto; }
  .app-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-feature-grid { grid-template-columns: minmax(0, 1fr); }
  .app-feature-image { max-width: 650px; width: 100%; margin: 0 auto; }
  .app-screen-grid, .app-step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .app-screen-card { padding: 8px; }
  .app-screen-image { height: 190px; }
  .app-step-card { padding: 14px; }
}
@media (max-width: 620px) {
  .app-container { width: min(calc(100% - 32px), 1200px); }
  .app-header-inner { min-height: 64px; width: min(calc(100% - 24px), 1280px); }
  .app-header-link { min-height: 64px; }
  .app-language-links { display: none; }
  .app-brand-name { font-size: 13px; }
  .app-hero-grid { min-height: 0; padding-top: 38px; padding-bottom: 24px; }
  .app-hero h1 { font-size: clamp(2.05rem, 10.5vw, 3.2rem); }
  .app-hero-lead { margin-top: 18px; font-size: 12px; line-height: 1.85; }
  .app-phone-stage { min-height: 320px; padding: 20px 0; }
  .app-phone-side { width: 108px; height: 215px; border-width: 2px; border-radius: 19px; }
  .app-phone-center { width: 150px; height: 286px; border-width: 3px; border-radius: 24px; padding: 4px; }
  .app-phone-center img { border-radius: 18px; }
  .app-phone-speaker { top: 7px; width: 48px; height: 11px; }
  .app-phone-left { margin-right: -28px; }
  .app-phone-right { margin-left: -28px; }
  .app-section { padding: 58px 0; }
  .app-category-band { padding: 18px 0 22px; }
  .app-category-grid { gap: 10px; }
  .app-category-card { min-height: 118px; padding: 14px; }
  .app-category-card h3 { margin-left: 7px; font-size: 12px; vertical-align: 3px; }
  .app-category-list { gap: 2px; margin-top: 8px; font-size: 10px; line-height: 1.5; }
  .app-feature-copy h2, .app-centered-heading h2 { font-size: clamp(1.75rem, 8.5vw, 2.35rem); }
  .app-check-list { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .app-feature-image, .app-feature-image img { min-height: 220px; }
  .app-screen-grid, .app-step-grid, .app-faq-grid { grid-template-columns: minmax(0, 1fr); }
  .app-screen-image { height: 230px; }
  .app-step-card { min-height: 145px; }
  .app-step-arrow { display: none; }
  .app-step-card:not(:last-child)::after { position: absolute; right: 50%; bottom: -14px; width: 1px; height: 12px; background: #cbd3da; content: ""; }
  .app-contact-inner { padding: 20px; }
  .app-contact-actions { align-items: flex-start; flex-direction: column; }
  .app-contact-actions .app-store-links { flex-wrap: wrap; }
}
@media (max-width: 400px) {
  .app-header-cta { padding: 0 12px; font-size: 11px; }
  .app-brand-logo { flex-basis: 28px; width: 28px; height: 28px; }
  .app-brand-tagline { font-size: 7px; }
  .app-phone-side { width: 96px; height: 192px; }
  .app-phone-center { width: 136px; height: 260px; }
  .app-phone-left { margin-right: -25px; }
  .app-phone-right { margin-left: -25px; }
}
@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-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;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-divide-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-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-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-content {
  syntax: "*";
  initial-value: "";
  inherits: false;
}
@property --tw-divide-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@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-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-divide-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-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-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-content: "";
      --tw-divide-x-reverse: 0;
    }
  }
}
