/* Fusapp Go Aurora — brand token override layer for the Crafto "Application" base theme.
   Loaded AFTER vendors.min.css / icon.min.css / style.css / responsive.css / application.css so
   these CSS custom-property overrides win the cascade. The Crafto layout/component rules themselves
   are untouched — every color/font in style.css/application.css already resolves through
   var(--base-color) / var(--primary-font) / var(--alt-font) / var(--dark-gray) / var(--medium-gray) /
   var(--*-gray) (verified: --base-color hex appears exactly once, inside its own :root declaration,
   in each of style.css and application.css), so redeclaring the tokens here re-themes the whole
   component library without touching style.css/application.css/responsive.css.
   Same pattern as Fusapp.CMS.Theme.Fusapp/wwwroot/assets/css/aurora.css — see that file's header for
   the full rationale. Token spec: docs/brand/fusapp/palette-v2/PALETTE-SPEC.md ("Aurora"). */

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/_content/Fusapp.CMS.Theme.FusappGo/assets/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  /* Covers Turkish-specific letters not in the Latin-1 range: ğĞ şŞ ıİ (Latin Extended-A). */
  src: url("/_content/Fusapp.CMS.Theme.FusappGo/assets/fonts/onest-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Aurora tokens (identical values to Fusapp.CMS.Theme.Fusapp — one brand, one palette) */
  --fx-canvas: #ffffff;
  --fx-surface: #f5f3fc;
  --fx-surface-2: #ece9fb;
  --fx-border: #e4e1f0;
  --fx-ink: #1a1533;
  --fx-muted: #6b6780;
  --fx-violet: #6c47ff;
  --fx-violet-600: #5a34e8;
  --fx-violet-700: #4a28c0;
  --fx-orange: #ff6a2c;
  --fx-orange-600: #f0551a;
  --fx-orange-700: #c8410f;
  --fx-fusion: linear-gradient(90deg, #6c47ff 0%, #ff6a2c 100%);

  /* Crafto tokens re-pointed at Aurora — cascades through style.css/application.css's existing
     var() usages. application.css's own --base-color (#fd6f63 "Crafto orange") is overridden here. */
  --primary-font: "Onest", sans-serif;
  --alt-font: "Onest", sans-serif;
  --base-color: var(--fx-violet);
  --dark-gray: var(--fx-ink);
  --medium-gray: var(--fx-muted);
  --very-light-gray: var(--fx-surface);
  --light-medium-gray: var(--fx-surface-2);
  --extra-medium-gray: var(--fx-border);
}

/* Orange is a single-point accent (CTA / hairline) — never a dominant fill. Body text on orange
   fails AA, so accent buttons keep ink text, not white. */
.btn.btn-aurora-orange {
  background-color: var(--fx-orange);
  border-color: var(--fx-orange);
  color: var(--fx-ink);
}
.btn.btn-aurora-orange:hover,
.btn.btn-aurora-orange:active {
  background-color: transparent;
  border-color: var(--fx-orange);
  color: var(--fx-orange-700);
}
.fx-accent-text {
  color: var(--fx-orange-700);
}
.fx-fusion-text {
  background: var(--fx-fusion);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fusewing mark + wordmark lockup (header/footer) — identical pattern to Fusapp.CMS.Theme.Fusapp */
.fx-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.fx-logo svg {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.fx-logo .fx-wordmark {
  font-family: "Onest", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fx-ink);
}
.fx-logo.fx-logo-white .fx-wordmark {
  color: #ffffff;
}

/* Language switch pill (EN | TR) */
.fx-lang-switch a {
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 20px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.fx-lang-switch a:hover {
  opacity: 1;
}

/* Section eyebrow pill re-themed to violet-tint surface instead of Crafto's solid base-color pill */
.fx-eyebrow {
  display: inline-block;
  font-size: 11px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fx-violet-700);
  background-color: var(--fx-surface-2);
  border-radius: 30px;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Partner tier cards — Bronze/Silver/Gold/Platinum teaser grid (Home/Index "tiers" section).
   Each tier gets a small accent dot in its traditional metal color purely as a visual anchor;
   the card surface/border/type all stay on Aurora tokens so the grid still reads as one system. */
.fx-tier-card {
  height: 100%;
  padding: 32px 24px;
  border-radius: 15px;
  background-color: var(--fx-canvas);
  border: 1px solid var(--fx-border);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fx-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(108, 71, 255, 0.16);
}
.fx-tier-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.fx-tier-card.fx-tier-bronze .fx-tier-dot { background-color: #b0764a; }
.fx-tier-card.fx-tier-silver .fx-tier-dot { background-color: #9aa3ad; }
.fx-tier-card.fx-tier-gold .fx-tier-dot { background-color: #d8a53d; }
.fx-tier-card.fx-tier-platinum .fx-tier-dot { background-color: var(--fx-violet); }
.fx-tier-name {
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fx-muted);
  margin-bottom: 10px;
}
.fx-tier-rate {
  font-family: "Onest", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--fx-ink);
  letter-spacing: -0.02em;
}
.fx-tier-threshold {
  font-size: 14px;
  color: var(--fx-muted);
  margin-top: 8px;
}

/* Canonical partner badges (brand.fusapp.com/badges/*, Atilla 2026-07-1x) — self-contained lockup
   badges (Fusewing mark + tier name baked in as SVG paths, real metallic gradient) replace the old
   local square icon-mark + separate text-label combo in the "#pricing" tier tabs. Both variants are
   fixed-height/auto-width so their native card (296x96, ~3:1) / pill (~6:1) aspect ratio is preserved:
     fx-tier-nav-badge  — "partner-{tier}.svg" full card badge, tab-navigation header (was icon+name)
     fx-tier-pill-badge — "pill-{tier}.svg" compact badge, tab-content corner ribbon (was icon+name) */
.fx-tier-nav-badge {
  height: 40px;
  width: auto;
}
.fx-tier-pill-badge {
  height: 24px;
  width: auto;
}

/* App Store / Google Play badge link — the real store listing URL isn't assigned yet, so href
   stays "#" as a placeholder until launch (see PR description), but the badge renders as a live,
   clickable download CTA (no grayscale filter, no "coming soon" ribbon). */
.fx-store-badge {
  display: inline-block;
  position: relative;
}

/* Revize 1+2 (go-revize-1, 2026-07): app screenshot mockups (assets/images/app/**, all native
   640x1347) inherit only style.css's generic `img{max-width:100%;height:auto}` reset, so each one
   renders at the full width of its (often wide) Bootstrap column — on desktop that reads as an
   oversized phone filling half the section. These classes cap RENDER size only (image files
   untouched, per brief). Hero primary shot ~300px (brief: 260-320px); hero accent shot (the small
   overlapping screen) shrinks further so it stops covering the hero background photo (revize 2);
   stack/atropos feature-showcase shots get a proportionally larger but still-capped size; the
   closing two-up "on the App Store" shots share a smaller side-by-side cap. */
.fx-hero-shot img {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.fx-hero-shot-accent img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
.fx-app-shot {
  max-width: 320px;
  width: 100%;
  height: auto;
}
.fx-app-shot-side {
  max-width: 230px;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .fx-hero-shot img {
    max-width: 240px;
  }
  .fx-hero-shot-accent img {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .fx-hero-shot img {
    max-width: 200px;
  }
  .fx-hero-shot-accent img {
    max-width: 100px;
  }
  .fx-app-shot {
    max-width: 220px;
  }
  .fx-app-shot-side {
    max-width: 170px;
  }
}

/* Revize 3 (go-revize-1): visible EN/TR culture switch, same pill treatment + markup contract as
   Fusapp.CMS.Theme.Fusapp's fx-lang-switch (CSS already shared — this theme just wasn't wiring the
   markup yet). Lives in .header-icon (already a flex row, see style.css ~L7820) — NOT wrapped in a
   d-none d-lg-flex like the Fusapp theme's copy, so it stays reachable on mobile per Atilla's brief. */
.fx-lang-switch {
  display: inline-flex;
  align-items: center;
}

/* Revize 5 (go-revize-1): footer social row — LinkedIn was the only platform present (a plain text
   link). Instagram/YouTube/Facebook hrefs are "#" placeholders: Fusapp OÜ doesn't have confirmed
   handles for these platforms yet (Atilla, 2026-07-16) — wire the real URLs in at launch. Do NOT
   point these at a guessed or another company's handle. Monochrome pill-outline treatment matches
   the .fx-lang-switch / cookie-consent button language already established for this theme's dark
   footer, rather than Crafto's brand-colored social-icon-style-03 swatches. */
.fx-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.fx-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.fx-social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Mobile header actions — language pill + "Become a partner" CTA rendered INSIDE the collapsed
   menu (_Layout.cshtml), not in the header row. On phones the desktop column that holds these
   (~253px) plus the logo lockup (~178px) and the toggler (~52px) summed to ~483px, wider than a
   402px iPhone 16 Pro viewport, so flex-wrap on .container-fluid broke the header onto two rows:
   the logo sat alone on top while the hamburger dropped to a second row (and the language pill
   ended up flush against the screen edge via xs-ps-0). Moving them into the menu keeps the header
   a single logo-left / hamburger-right row at every phone width. */
.fx-mobile-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  /* 15px side inset matches the collapsed menu's .nav-link padding (0 15px) so the language
     pill lines up with "Home"/"About" instead of sitting flush against the screen edge, where
     its rounded border read as clipped. */
  padding: 20px 15px 0;
  border-top: 1px solid rgba(26, 21, 51, 0.12);
}
.fx-mobile-actions__lang {
  font-family: "Onest", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: 20px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.fx-mobile-actions__lang:hover {
  opacity: 1;
}
