.panel-group {
  display: table;
  width: 100%;
}
.panel-title {
  display: table-row;
}
.panel-title a div {
  display: table-cell;
  vertical-align: middle;
}
.panel-title .panel-title-text {
  padding-left: 15px;
}
.panel-title .panel-state-indicator {
  height: 36px;
  width: 36px;
  position: relative ;
}
.panel-title .panel-state-indicator img {
  height: 36px;
  width: 36px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
}
.panel-title a.collapsed .panel-state-indicator img {
  /*animation:spin 0.5s linear ;*/
  transform: rotate(180deg);
}
@keyframes spin {
  100% {
    transform: rotate(0deg);
  }
}
.panel-body {
  padding-left: 5pt;
}
.faq-inline-icon {
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0 0.2em;
  vertical-align: middle;
}
.recent-developments-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.recent-developments-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.recent-developments-new-icon {
  display: block;
  width: 24px;
  height: 24px;
}
/****************************************************

	Media Queries

****************************************************/
:root {
  color-scheme: dark;
  --page: #090a0e;
  --surface: #11141a;
  --surface-warm: #171a21;
  --ink: #f5f1e8;
  --muted: #a9a29a;
  --soft: #373d49;
  --line: rgba(236, 229, 218, 0.12);
  --orange: #ff8a2a;
  --orange-dark: #ff9b4f;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 138, 42, 0.035), transparent 460px), var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 10, 14, 0.82);
  border-bottom: 1px solid rgba(236, 229, 218, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
}
.site-header .nav {
  width: min(calc(100% - 48px), 1280px);
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}
.site-header .brand:hover,
.site-header .brand:focus {
  color: var(--ink);
}
.site-header .brand img {
  border-radius: 7px;
  box-shadow: 0 12px 34px rgba(255, 114, 24, 0.22);
}
.site-header .nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.95rem;
}
.site-header .nav-links a {
  position: relative;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}
.site-header .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.site-header .nav-links a:hover::after,
.site-header .nav-links a:focus-visible::after,
.site-header .nav-links a.active::after {
  transform: scaleX(1);
}
.site-header .app-store-link {
  display: inline-flex;
  align-items: center;
  width: 182px;
  min-height: 54px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.site-header .app-store-link:hover,
.site-header .app-store-link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}
.site-header .nav-toggle {
  display: none;
}
.page-intro,
.faq-content,
.site-footer {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
}
.page-intro {
  padding: 72px 0 34px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
}
.page-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(245, 241, 232, 0.74);
  font-size: 1.1rem;
}
.faq-content {
  padding: 34px 0 72px;
}
.faq-content .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.faq-content .row {
  margin: 0;
}
.faq-content .row > * {
  padding: 0;
}
.faq-content h2 {
  margin: 42px 0 18px;
  color: var(--muted) !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.accordion {
  display: grid;
  gap: 12px;
}
.accordion-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: none;
}
.accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a9a29a' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff9b4f' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  gap: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: rgba(255, 138, 42, 0.095);
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--line);
}
.accordion-button:focus {
  border-color: rgba(255, 138, 42, 0.35);
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 42, 0.14);
}
.accordion-button::after {
  flex: 0 0 auto;
  margin-left: auto;
  opacity: 1;
  filter: none;
}
.panel-body {
  padding: 20px 22px 22px;
  background: var(--surface);
  color: var(--muted);
}
.panel-body p:last-child,
.modal-body p:last-child {
  margin-bottom: 0;
}
.panel-body a,
.modal-body a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.recent-developments-new-badge {
  color: var(--orange);
}
.recent-developments-new-icon {
  fill: currentColor;
}
.modal-content {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.site-footer {
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  gap: 64px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
}
.site-footer .brand img {
  border-radius: 7px;
  box-shadow: 0 12px 34px rgba(255, 114, 24, 0.22);
}
.site-footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
}
.site-footer-brand small {
  display: block;
  margin-top: 22px;
}
.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.site-footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer-group h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-footer-group a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}
.site-footer-group a:hover,
.site-footer-group a:focus-visible {
  color: var(--orange-dark);
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #090a0e;
    --surface: #11141a;
    --surface-warm: #171a21;
    --ink: #f5f1e8;
    --muted: #a9a29a;
    --soft: #373d49;
    --line: rgba(236, 229, 218, 0.12);
    --orange: #ff8a2a;
    --orange-dark: #ff9b4f;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  }
  body {
    background: linear-gradient(180deg, rgba(255, 138, 42, 0.035), transparent 460px), var(--page);
    color: var(--ink);
  }
  .site-header {
    background: rgba(9, 10, 14, 0.82);
    border-bottom-color: rgba(236, 229, 218, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
  }
  .site-header .brand,
  .site-header .nav-links,
  .site-footer .brand,
  .site-footer-group h2,
  .page-intro h1,
  .accordion-button,
  .accordion-button:not(.collapsed),
  .modal-content {
    color: var(--ink);
  }
  .site-header .brand img {
    box-shadow: 0 12px 34px rgba(255, 114, 24, 0.22);
  }
  .site-header .nav-links {
    color: rgba(245, 241, 232, 0.82);
  }
  .page-intro p:not(.eyebrow),
  .site-footer,
  .site-footer-group a,
  .site-footer-brand p,
  .site-footer-brand small,
  .panel-body {
    color: rgba(245, 241, 232, 0.74);
  }
  .accordion-item {
    background: var(--surface);
    border-color: var(--line);
  }
  .accordion-button {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a9a29a' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff9b4f' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    background: rgba(255, 255, 255, 0.045);
  }
  .accordion-button:not(.collapsed) {
    background: rgba(255, 138, 42, 0.095);
  }
  .panel-body {
    background: var(--surface);
  }
}
@media (max-width: 980px) {
  .site-header .nav {
    grid-template-columns: auto auto;
  }
  .site-header .nav-download {
    display: none;
  }
  .site-header .nav-links {
    justify-self: end;
  }
}
@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }
  .site-header .nav {
    width: min(calc(100% - 32px), 1280px);
    min-height: 76px;
    gap: 18px;
  }
  .site-header .brand {
    font-size: 1.1rem;
  }
  .site-header .brand img {
    width: 36px;
    height: 36px;
  }
  .site-header .nav-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    gap: 5px;
    place-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .site-header .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  .site-header .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    background: rgba(17, 20, 26, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .site-header .nav-links.open {
    display: flex;
  }
  .page-intro,
  .faq-content,
  .site-footer {
    width: min(calc(100% - 20px), 1280px);
  }
  .page-intro {
    padding-top: 50px;
  }
  .page-intro h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  .accordion-button {
    padding: 16px;
  }
  .panel-body {
    padding: 18px 16px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0;
  }
  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 760px) and (prefers-color-scheme: dark) {
  .site-header .nav-links {
    background: rgba(17, 20, 26, 0.98);
  }
}
