:root {
  --floa-bg: #101217;
  --floa-panel: #1a1d25;
  --floa-line: #30343e;
  --floa-text: #f5f4ef;
  --floa-muted: #adb2c1;
  --floa-blue: #8c9fff;
  --floa-space: 24px;
  --floa-radius: 18px;
  --accent: #8c9fff;
}
* {
  box-sizing: border-box;
}
body.floa {
  margin: 0;
  background: var(--floa-bg);
  color: var(--floa-text);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--floa-blue);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.floa-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 4vw;
  border-bottom: 1px solid var(--floa-line);
  background: var(--floa-bg);
  position: relative;
  z-index: 40;
}
.floa-brand {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -2px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.floa-brand span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--floa-muted);
  align-self: flex-end;
  margin-bottom: 8px;
}
.floa-nav {
  display: flex;
  gap: 25px;
  margin: auto;
}
.floa-nav a {
  color: var(--floa-muted);
  font-size: 14px;
}
.floa-nav a[aria-current="page"] {
  color: var(--floa-text);
}
.floa-nav small {
  font-size: 9px;
  text-transform: uppercase;
  border: 1px solid var(--floa-line);
  padding: 3px;
}
.floa-account,
.floa-signin,
.floa-switcher {
  font-size: 13px;
}
.floa-signin {
  padding: 8px 16px;
  border: 1px solid var(--floa-line);
  border-radius: 30px;
}
.floa-switcher {
  position: relative;
}
.floa-switcher summary {
  cursor: pointer;
}
.floa-switcher nav {
  position: absolute;
  top: 35px;
  right: 0;
  width: 240px;
  background: var(--floa-panel);
  border: 1px solid var(--floa-line);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 15px 40px #0008;
}
.floa-switcher a {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
}
.floa-switcher a:hover {
  background: #30343e;
}
.floa-switcher small {
  color: var(--floa-muted);
}
.floa-skip {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: #fff;
  color: #000;
  z-index: 100;
}
.floa-skip:focus {
  top: 12px;
}
.floa-main {
  max-width: 1240px;
  margin: auto;
  padding: 0 40px 80px;
}
.floa-hero {
  padding: 100px 0 90px;
  position: relative;
  border-bottom: 1px solid var(--floa-line);
  margin-bottom: 55px;
}
.floa-eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
}
.floa h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -4px;
  margin: 25px 0;
}
.floa h1 span {
  color: var(--accent);
}
.floa-hero p,
.floa-heading p {
  color: var(--floa-muted);
  font-size: 18px;
  max-width: 580px;
}
.floa-button {
  display: inline-flex;
  gap: 55px;
  background: #a5b4ff;
  color: #121625;
  border-radius: 30px;
  padding: 13px 25px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
}
.floa-caption {
  display: block;
  margin-top: 15px;
  color: var(--floa-muted);
  font-size: 12px;
}
.floa-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.floa-section-title h2 {
  font-size: 32px;
  margin: 6px 0;
  font-weight: 500;
  letter-spacing: -1px;
}
.floa-section-title p {
  font-size: 13px;
  color: var(--floa-muted);
}
.floa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.floa-card {
  padding: 24px;
  border: 1px solid var(--floa-line);
  border-radius: var(--floa-radius);
  background: var(--floa-panel);
  transition:
    transform 0.15s,
    border-color 0.15s;
}
.floa-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.floa-card-top,
.floa-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floa-number {
  font-size: 11px;
  color: var(--floa-muted);
}
.floa-badge {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--floa-line);
  border-radius: 20px;
  padding: 5px 10px;
  color: var(--accent);
}
.floa-card-art {
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 80px;
  color: var(--accent);
  font-family: Georgia, serif;
}
.floa-card h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 8px 0;
}
.floa-card h3 span {
  font-size: 20px;
  color: var(--accent);
}
.floa-card p {
  font-size: 13px;
  color: var(--floa-muted);
  margin-bottom: 5px;
}
.accent-ochre {
  --accent: #eac386;
}
.accent-coral {
  --accent: #efaa95;
}
.accent-green {
  --accent: #98c7a3;
}
.accent-blue {
  --accent: #9caeff;
}
.accent-violet {
  --accent: #c0a5eb;
}
.accent-rose {
  --accent: #e6a4b9;
}
.floa-future {
  margin-top: 65px;
}
.floa-future h2 {
  font-weight: 500;
}
.floa-future p {
  color: var(--floa-muted);
  font-size: 14px;
}
.floa-future > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.floa-future a {
  border: 1px solid var(--floa-line);
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 14px;
}
.floa-heading {
  padding: 70px 0 40px;
}
.floa-state {
  padding: 25px;
  border: 1px solid var(--floa-line);
  border-radius: 12px;
  margin: 25px 0;
  color: var(--floa-muted);
}
.floa-state strong {
  color: var(--floa-text);
}
.floa-state p {
  font-size: 14px;
  margin-bottom: 0;
}
.floa-state a {
  color: var(--floa-blue);
}
.floa-sample {
  background: var(--accent);
  color: #202329;
  padding: 65px;
  border-radius: 18px;
  max-width: 850px;
  margin: 10px auto 50px;
}
.floa-sample .floa-eyebrow {
  color: inherit;
}
.floa-sample h2 {
  font-size: 48px;
  line-height: 1.15;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: -2px;
}
.floa-sample p {
  max-width: 500px;
}
.floa-sample small {
  display: block;
  border-top: 1px solid #20232944;
  padding-top: 20px;
  margin-top: 50px;
}
.sample-words {
  text-align: center;
}
.sample-words h2,
.sample-words p {
  margin-left: auto;
  margin-right: auto;
}
.sample-nature {
  border-radius: 120px 18px 18px;
}
.sample-travel {
  min-height: 420px;
  border-left: 60px solid #20232944;
}
.sample-ideas h2 {
  font-family: Georgia, serif;
  font-style: italic;
}
.sample-watch {
  background: #22232e;
  color: #f4ebef;
  min-height: 400px;
  text-align: center;
}
.sample-watch h2,
.sample-watch p {
  margin-left: auto;
  margin-right: auto;
}
.floa-play {
  font-size: 75px;
  display: block;
  color: var(--accent);
}
.floa-preview-mix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.floa-preview-mix article {
  background: #eac386;
  color: #232127;
  border-radius: 18px;
  padding: 45px;
  min-height: 280px;
}
.floa-preview-mix article + article {
  background: #efaa95;
}
.floa-preview-mix span {
  font-size: 11px;
}
.floa-preview-mix h2 {
  font-size: 36px;
  line-height: 1.1;
}
.floa-footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin: 0 4vw;
  padding: 30px 0;
  border-top: 1px solid var(--floa-line);
  font-size: 12px;
  color: var(--floa-muted);
}
.floa-notice {
  margin: 10px 4vw;
  color: var(--floa-muted);
}
.floa-settings {
  max-width: 680px;
}
.floa-settings label {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}
.floa-settings input:not([type="checkbox"]),
.floa-settings select {
  max-width: 280px;
  width: 55%;
  border: 1px solid var(--floa-line);
  background: var(--floa-panel);
  color: var(--floa-text);
  padding: 10px;
  border-radius: 8px;
}
.floa-settings fieldset {
  border: 1px solid var(--floa-line);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}
.floa-settings button,
.floa-header button {
  background: var(--floa-panel);
  color: var(--floa-text);
  border: 1px solid var(--floa-line);
  padding: 10px 15px;
  border-radius: 20px;
}
.floa-saved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.floa-saved-grid img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #202329;
}
.floa-art .topbar {
  position: relative;
  inset: auto;
  transform: none !important;
}
.floa-art .layout {
  padding-top: 30px;
}
.floa-art .left {
  top: 180px;
}
.floa-art .page-topbar {
  position: relative;
  top: auto;
}
.floa-art .floa-header .floa-nav {
  margin: auto;
}
.floa-art .floa-footer {
  margin-top: 40px;
}
.floa-art .floa-header {
  line-height: 1.6;
}
.floa-art .floa-header button {
  font-size: 12px;
}
.floa-sample-states summary {
  cursor: pointer;
  color: var(--floa-muted);
}
@media (max-width: 900px) {
  .floa-header {
    gap: 15px;
    flex-wrap: wrap;
  }
  .floa-nav {
    order: 5;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--floa-line);
    padding-top: 12px;
  }
  .floa-brand {
    margin-right: auto;
  }
  .floa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floa-section-title p {
    display: none;
  }
  .floa-art .left {
    top: 220px;
  }
}
@media (max-width: 580px) {
  .floa-header {
    padding: 14px 20px;
    gap: 12px;
  }
  .floa-brand {
    font-size: 29px;
  }
  .floa-brand span {
    display: none;
  }
  .floa-account {
    display: none;
  }
  .floa-main {
    padding: 0 22px 50px;
  }
  .floa-hero {
    padding: 65px 0 50px;
  }
  .floa h1 {
    letter-spacing: -2px;
  }
  .floa-hero p {
    font-size: 16px;
  }
  .floa-grid,
  .floa-preview-mix,
  .floa-saved-grid {
    grid-template-columns: 1fr;
  }
  .floa-card-art {
    height: 120px;
  }
  .floa-card {
    padding: 22px;
  }
  .floa-heading {
    padding-top: 45px;
  }
  .floa-sample {
    padding: 30px;
    border-radius: 18px;
  }
  .floa-sample h2 {
    font-size: 35px;
  }
  .sample-travel {
    border-left-width: 20px;
  }
  .floa-footer {
    flex-wrap: wrap;
  }
  .floa-settings label {
    flex-wrap: wrap;
  }
  .floa-art .layout {
    padding-top: 15px;
  }
  .floa-art .topbar {
    height: auto;
    min-height: 76px;
  }
  .floa-art .left {
    top: auto;
  }
  .floa-settings input:not([type="checkbox"]),
  .floa-settings select {
    width: 100%;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.floa-art {
  --acid: #eac386;
  --orange: #eac386;
}
@media (max-width: 580px) {
  .floa-art .floa-footer {
    padding-bottom: 100px;
  }
}

.floa-document { padding-top: 40px; overflow-wrap: anywhere; }
.floa-document h1 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -1px; }
.floa-document a { text-decoration: underline; }
.floa-document pre { overflow-x: auto; }
.floa-document table { display: block; overflow-x: auto; }
