@charset "UTF-8";
/* MAIN SASS Document (main.sass) */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+Pro:wght@400;700&display=swap");
html, body,
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption,
footer, header, hgroup,
menu, nav,
output, ruby,
section, summary, time, mark,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

article, aside, details,
figcaption, figure,
footer, header, hgroup,
menu, nav,
section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote {
  content: none; }
  blockquote:before, blockquote:after {
    content: ''; }
  blockquote q:before, blockquote q:after {
    content: '';
    content: none; }
  blockquote table {
    border-collapse: collapse;
    border-spacing: 0; }

/* Apply border-box model globally */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* VARIABLES (_variables.sass) */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: rgba(1, 3, 7, 0.9);
  background-color: #f5f5f9; }

main {
  padding: 64px 0;
  background-color: #f5f5f9;
  min-height: calc( 100vh - 128px); }
  main:has(.viewer) {
    padding: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.center-container {
  margin: 0 auto;
  padding: 3rem 0 1rem;
  max-width: 1200px;
  text-align: center; }

.callout {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.3;
  padding: 0 2rem;
  text-wrap-style: balance; }
  @media (max-width: 768px) {
    .callout {
      padding: 0 4rem; } }
article {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 4rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6; }
  article h1, article h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0b1659; }
  article h1 {
    font-size: 2rem; }
  article h2 {
    font-size: 1.5rem; }
  article p {
    margin-bottom: 1.2rem;
    color: #0b2646;
    text-wrap-style: balance; }
  article ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    article ul li {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
      position: relative; }
      article ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0.3rem;
        font-size: 1.2rem;
        color: #1231a2; }
  article strong {
    color: #0b1659;
    font-weight: 600; }
  article a {
    color: #439ed2;
    text-decoration: underline; }
    article a:hover {
      color: #1231a2; }

body {
  visibility: hidden; }

body {
  font-family: "Source Sans Pro", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Baskerville", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-wrap-style: balance; }

p {
  text-wrap-style: balance; }

footer {
  font-family: "Source Sans Pro", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2rem;
  font-size: 1.1rem; }
  #cookie-consent-banner div {
    margin-bottom: 0.5em; }
    #cookie-consent-banner div a {
      color: #155ec2;
      text-decoration: underline; }
      #cookie-consent-banner div a:hover {
        color: #1281f8; }
  #cookie-consent-banner button {
    margin: 0 0.25em;
    padding: 0.4em 1.1em;
    border: none;
    border-radius: 5px;
    background: #155ec2;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.18s; }
    #cookie-consent-banner button:hover {
      background: #1281f8; }

#cookie-consent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.38);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center; }
  #cookie-consent-modal > div {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    max-width: 480px;
    margin: 5% auto;
    padding: 2em;
    min-width: 320px; }
    #cookie-consent-modal > div h2 {
      font-size: 1.4rem;
      margin-bottom: 1em; }
    #cookie-consent-modal > div form label {
      font-weight: 500;
      margin-bottom: 0.7em;
      display: block; }
    #cookie-consent-modal > div form input[type="checkbox"] {
      margin-right: 0.5em; }
    #cookie-consent-modal > div form small {
      color: #888; }
    #cookie-consent-modal > div form div {
      margin-top: 1em; }
    #cookie-consent-modal > div form button[type="submit"], #cookie-consent-modal > div form button[type="button"] {
      margin-right: 0.5em;
      padding: 0.4em 1.1em;
      border: none;
      border-radius: 5px;
      background: #155ec2;
      color: #fff;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.18s; }
      #cookie-consent-modal > div form button[type="submit"]:hover, #cookie-consent-modal > div form button[type="button"]:hover {
        background: #1281f8; }

footer {
  padding: 1rem;
  margin: auto 0 0 0;
  height: auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.62;
  color: #090d33;
  background-color: aliceblue;
  border-top: thin solid #48a9ff;
  z-index: 1011; }
  footer .fixed {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0; }

.container.form {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(0, 0, 0, 0.12);
  max-width: 420px;
  margin: 3.5rem auto 2.5rem auto;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.02em;
  transition: box-shadow 0.22s cubic-bezier(0.38, 0.1, 0.35, 0.92);
  box-sizing: border-box; }
  .container.form h2 {
    margin-bottom: 2.5rem;
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #101225; }

.form-group {
  margin-bottom: 2.1rem; }

input {
  width: 100%;
  font-size: 1.16rem;
  padding: 1.15rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid #d0d4df;
  background: #f7f8fa;
  color: #14172b;
  margin: 0.3rem 0;
  outline: none;
  transition: border 0.18s cubic-bezier(0.38, 0.1, 0.35, 0.92), background 0.14s;
  box-sizing: border-box;
  font-weight: 400; }
  input:focus {
    border: 1.5px solid #275bda;
    background: #fff; }
  input:disabled {
    opacity: 0.56; }
  input[type="checkbox"], input[type="radio"] {
    width: auto;
    margin-right: 0.62rem;
    vertical-align: middle; }

button[type="submit"], button:not([type]) {
  width: 100%;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 1.13rem 0;
  margin: 0.7rem 0 0 0;
  background: linear-gradient(90deg, #3569ef 0%, #4d90f5 100%);
  color: #fff;
  border: none;
  border-radius: 11px;
  box-shadow: 0 2px 16px 0 rgba(67, 120, 210, 0.1);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.22s; }
  button[type="submit"]#user-menu-toggle, button:not([type])#user-menu-toggle {
    padding: 0.2rem 0.3rem 0;
    margin: 0.5rem 0 0 0;
    border-radius: 9999px; }
  button[type="submit"]:hover, button[type="submit"]:focus, button:not([type]):hover, button:not([type]):focus {
    background: linear-gradient(90deg, #2d56c1 0%, #336fd1 100%);
    box-shadow: 0 4px 26px 0 rgba(67, 120, 210, 0.17); }
  button[type="submit"].disabled, button:not([type]).disabled {
    position: relative;
    background: #a5b5d6 !important;
    cursor: not-allowed; }
    button[type="submit"].disabled::after, button:not([type]).disabled::after {
      content: '';
      position: absolute;
      right: 1.2rem;
      top: 50%;
      width: 1rem;
      height: 1rem;
      margin-top: -0.5rem;
      border: 2px solid rgba(255, 255, 255, 0.7);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.6s linear infinite; }

.switch-link {
  text-align: center;
  margin-top: 2.2rem;
  display: block;
  color: #275bda;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.07rem;
  letter-spacing: 0.01em; }
  .switch-link:hover {
    color: #101225; }

#username-status, #email-status, #password-match {
  display: block;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  margin-left: -0.6rem;
  font-size: 1rem;
  font-weight: 500;
  min-height: 1.2em;
  transition: color 0.17s; }
  #username-status.loading, #email-status.loading, #password-match.loading {
    color: #999;
    font-style: italic; }
  #username-status.error, #email-status.error, #password-match.error {
    color: #b32d2e; }
  #username-status.success, #email-status.success, #password-match.success {
    color: #1e7e34; }

.input-helper {
  display: block;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  margin-left: 1.2rem;
  font-size: 0.93rem;
  color: #555; }

.form-status {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 1.4em;
  color: #b32d2e;
  transition: color 0.2s ease-in-out; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

header {
  background-color: aliceblue;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  height: 96px;
  border-bottom: thin solid #48a9ff;
  padding: 0 1rem 0 2rem;
  z-index: 1101; }
  header::after {
    content: "";
    display: table;
    clear: both; }

.site-header .container {
  min-height: -webkit-fill-available;
  height: 96px;
  place-content: center; }

#InstacardLogo path {
  stroke: #111;
  stroke-width: 2;
  fill: transparent;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  animation: draw-stroke 1500ms cubic-bezier(0.55, 0.11, 0.46, 0.85) forwards, fill-color 1000ms cubic-bezier(0.55, 0.11, 0.46, 0.85) forwards, fade-opacity 1000ms ease forwards, pop-instacard-logo 800ms cubic-bezier(0.46, 0.03, 0.52, 0.96) both; }
  #InstacardLogo path:nth-of-type(2) {
    animation-delay: 0.2s, 0.4s, 0.1s, 0.1s; }
  #InstacardLogo path:nth-of-type(3) {
    animation-delay: 0.4s, 0.6s, 0.2s, 0.2s; }
  #InstacardLogo path:nth-of-type(4) {
    animation-delay: 0.6s, 0.8s, 0.3s, 0.3s; }
  #InstacardLogo path:nth-of-type(5) {
    animation-delay: 0.8s, 1.0s, 0.4s, 0.4s; }
  #InstacardLogo path:nth-of-type(6) {
    animation-delay: 1.0s, 1.2s, 0.5s, 0.5s; }

@keyframes draw-stroke {
  0% {
    stroke-dashoffset: 1000; }
  80% {
    stroke-dashoffset: 0; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes fill-color {
  0% {
    fill: transparent; }
  100% {
    fill: #222; } }

@keyframes fade-opacity {
  0% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes pop-instacard-logo {
  0% {
    transform: scale(0.94);
    opacity: 0.1; }
  20% {
    transform: scale(0.94);
    opacity: 0.7; }
  80% {
    transform: scale(1.02);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }

.legal-page {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ci-color-text-normal, #ddd);
  background: var(--ci-background-page, transparent); }
  .legal-page__header {
    margin-bottom: 2rem; }
  .legal-page__title {
    font-size: clamp(1.9rem, 2.4rem, 2.4rem);
    line-height: 1.25;
    color: var(--ci-color-text-strong, #fff);
    font-weight: 600;
    margin-bottom: .5rem; }
  .legal-page__meta {
    font-size: .875rem;
    color: var(--ci-color-text-muted, #999);
    margin-top: .25rem;
    text-decoration: none; }
  .legal-page .legal-page__meta-item {
    margin-right: .5rem;
    text-decoration: none; }
  .legal-page .legal-page__meta-separator {
    margin: 0 .25rem;
    opacity: .6; }
  .legal-page__section {
    margin-top: 2.5rem;
    padding-top: 2rem; }
  .legal-page__section-title {
    font-size: clamp(1.3rem, 1.6rem, 1.6rem);
    line-height: 1.25;
    color: var(--ci-color-text-strong, #fff);
    font-weight: 600;
    margin-bottom: .75rem; }
  .legal-page__subsection-title {
    font-size: clamp(1.1rem, 1.3rem, 1.3rem);
    line-height: 1.25;
    color: var(--ci-color-text-strong, #fff);
    font-weight: 600;
    font-weight: 600;
    margin: 1.5rem 0 .5rem; }
  .legal-page p {
    margin: 1rem 0;
    text-align: center; }
  .legal-page ul {
    margin: .75rem 0 1.25rem 1.25rem;
    padding: 0;
    list-style: disc; }
  .legal-page ol {
    margin: .75rem 0 1.25rem 1.25rem;
    padding: 0;
    list-style: decimal; }
  .legal-page a {
    color: var(--ci-accent-400, #5ea0ff);
    text-decoration: underline;
    text-decoration-thickness: .125rem;
    text-underline-offset: 4px;
    transition: opacity .2s ease;
    text-decoration: none; }
    .legal-page a:hover {
      opacity: .75; }
  .legal-page__address {
    font-style: normal;
    line-height: 1.5;
    margin-top: 1rem;
    color: var(--ci-color-text-normal, #ddd);
    text-align: center; }
  .legal-page__copyright {
    font-size: .875rem;
    color: var(--ci-color-text-muted, #999);
    margin-top: 2rem;
    text-align: center; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .footer-legal__list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center; }
  .footer-legal__item {
    list-style: none; }
  .footer-legal__link {
    color: var(--ci-accent-400, #5ea0ff);
    text-decoration: underline;
    text-decoration-thickness: .125rem;
    text-underline-offset: 4px;
    transition: opacity .2s ease;
    text-decoration: none;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem; }
    .footer-legal__link:hover {
      opacity: .75; }
  .footer-legal__link-label {
    color: var(--ci-accent-400, #5ea0ff);
    text-decoration: underline;
    text-decoration-thickness: .125rem;
    text-underline-offset: 4px;
    transition: opacity .2s ease;
    text-decoration: underline;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem; }
    .footer-legal__link-label:hover {
      opacity: .75; }
  .footer-legal__link-meta {
    color: var(--ci-color-text-muted, #999);
    font-size: .8rem;
    text-decoration: none; }

@media (min-width: 900px) {
  .legal-page {
    font-size: 1.05rem; } }

@media (max-width: 480px) {
  .legal-page {
    padding: 2rem 0.75rem; }
  .footer-legal__list {
    flex-direction: column;
    gap: .5rem; } }

nav {
  z-index: 99; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 100; }
  .navbar__logo {
    flex: 1;
    text-align: center; }
    .navbar__logo a {
      display: inline-block; }
  .navbar__toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 202; }
    .navbar__toggle span {
      background-color: #090d33;
      display: block;
      height: 3px;
      margin: 5px 0;
      border-radius: 2px;
      transition: 0.36s cubic-bezier(0.38, 0.1, 0.35, 0.92); }
    .navbar__toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg); }
    .navbar__toggle.active span:nth-child(2) {
      opacity: 0; }
    .navbar__toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg); }
  .navbar__links {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: auto;
    transition: top 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    z-index: 200; }
    .navbar__links ul {
      list-style: none;
      padding: 0; }
      .navbar__links ul li {
        margin: 20px 0; }
        .navbar__links ul li a {
          color: #090d33;
          text-decoration: none;
          font-size: 1.2rem;
          opacity: 0;
          pointer-events: none;
          transform: translateY(8px);
          transition: opacity 0.24s, transform 0.28s cubic-bezier(0.38, 0.1, 0.35, 0.92); }
  .navbar__links.active {
    top: 0;
    left: 4rem;
    right: 4rem;
    width: auto;
    background-color: transparent; }
    .navbar__links.active ul li {
      width: 100%; }
      .navbar__links.active ul li a, .navbar__links.active ul li a.is-visible {
        text-align: center;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        animation-delay: 0.00s;
        animation: fade-in-menu 0.28s cubic-bezier(0.38, 0.1, 0.35, 0.92) both; }
      .navbar__links.active ul li:nth-child(1) a, .navbar__links.active ul li:nth-child(1) a.is-visible {
        animation-delay: 0.00s; }
      .navbar__links.active ul li:nth-child(2) a, .navbar__links.active ul li:nth-child(2) a.is-visible {
        animation-delay: 0.06s; }
      .navbar__links.active ul li:nth-child(3) a, .navbar__links.active ul li:nth-child(3) a.is-visible {
        animation-delay: 0.12s; }
      .navbar__links.active ul li:nth-child(4) a, .navbar__links.active ul li:nth-child(4) a.is-visible {
        animation-delay: 0.18s; }
      .navbar__links.active ul li:nth-child(5) a, .navbar__links.active ul li:nth-child(5) a.is-visible {
        animation-delay: 0.24s; }
  .navbar .nav-user {
    position: relative;
    display: inline-block;
    margin-left: 1rem; }
    .navbar .nav-user button#user-menu-toggle {
      background: none;
      border: none;
      cursor: pointer; }
      .navbar .nav-user button#user-menu-toggle svg {
        fill: #48a9ff;
        width: 24px;
        height: 24px; }
      .navbar .nav-user button#user-menu-toggle:hover svg {
        fill: #1e73e6; }
    .navbar .nav-user .dropdown {
      display: none;
      position: absolute;
      top: 120%;
      right: 0;
      background: white;
      border: 1px solid #ccc;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      z-index: 10;
      min-width: 140px;
      white-space: nowrap; }
      .navbar .nav-user .dropdown a {
        opacity: 0;
        pointer-events: none;
        display: block;
        padding: 0.25rem 0;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        color: black;
        text-decoration: none;
        transform: translateY(8px);
        transition: opacity 0.24s, transform 0.28s cubic-bezier(0.38, 0.1, 0.35, 0.92); }
        .navbar .nav-user .dropdown a:hover {
          text-decoration: underline; }
        .navbar .nav-user .dropdown a.active {
          font-weight: bold;
          color: #275bda;
          border-bottom: 2px solid #275bda; }
      .navbar .nav-user .dropdown a.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        animation: fade-in-menu 0.28s cubic-bezier(0.38, 0.1, 0.35, 0.92) both;
        animation-delay: 0s; }
        .navbar .nav-user .dropdown a.is-visible:nth-child(1) {
          animation-delay: 0.00s; }
        .navbar .nav-user .dropdown a.is-visible:nth-child(2) {
          animation-delay: 0.06s; }
        .navbar .nav-user .dropdown a.is-visible:nth-child(3) {
          animation-delay: 0.12s; }
        .navbar .nav-user .dropdown a.is-visible:nth-child(4) {
          animation-delay: 0.18s; }
        .navbar .nav-user .dropdown a.is-visible:nth-child(5) {
          animation-delay: 0.24s; }
    .navbar .nav-user .dropdown.active {
      display: block; }

.username-display {
  font-size: 0.95rem;
  font-weight: 600;
  color: #090d33;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.5rem 0.25rem 0;
  width: 100%;
  border-bottom: 1px solid #ddd; }

.nav-backdrop {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100vw;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.38, 0.1, 0.35, 0.92), background 0.38s cubic-bezier(0.38, 0.1, 0.35, 0.92), backdrop-filter 0.38s cubic-bezier(0.38, 0.1, 0.35, 0.92), opacity 0.21s;
  z-index: 101; }
  .nav-backdrop.active {
    height: 100vh;
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(18px);
    opacity: 1;
    pointer-events: auto; }

@keyframes fade-in-menu {
  from {
    opacity: 0;
    transform: translateY(8px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@media (min-width: 768px) {
  .navbar__logo {
    flex: 0; }
  .navbar__toggle {
    display: none; }
  .navbar__links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0; }
    .navbar__links ul {
      display: flex;
      margin: 0; }
      .navbar__links ul li {
        margin: 0 15px; }
        .navbar__links ul li a {
          font-size: 1rem;
          opacity: 1 !important;
          pointer-events: auto !important;
          transform: none !important;
          animation: none !important;
          transition: none !important; }
          .navbar__links ul li a.is-visible {
            opacity: 1;
            pointer-events: auto;
            transform: none;
            animation: fadeInUp 0.3s ease; } }

.step-component {
  perspective: 1000px;
  perspective-origin: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 2rem 4rem;
  padding: 2rem;
  border: thin solid #ddd;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f0f0f5 0%, #e0e0eb 100%);
  background-color: #eeeef4;
  box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease; }
  .step-component:hover {
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.02); }
  .step-component__image {
    flex: 1;
    margin-right: 2rem;
    transform-style: preserve-3d; }
    .step-component__image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      transition: transform 300ms ease, box-shadow 300ms ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      backface-visibility: hidden; }
  .step-component:hover .step-component__image img {
    transform: rotateY(33deg) translateZ(60px) scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3); }
  @media (prefers-reduced-motion: reduce) {
    .step-component__image img {
      transition: none; }
    .step-component:hover .step-component__image img {
      transform: none; } }
  .step-component__content {
    flex: 2; }
    .step-component__content h2 {
      font-size: 4rem;
      margin-bottom: 2rem; }
    .step-component__content h3 {
      font-size: 2.5rem;
      line-height: 1.15;
      margin-bottom: 1.5rem; }
    .step-component__content p {
      font-size: 1.5rem;
      line-height: 1.4; }
  .step-component.reverse-flow {
    flex-direction: row-reverse; }
    .step-component.reverse-flow .step-component__image {
      flex: 1;
      margin-left: 2rem;
      margin-right: 0; }
    .step-component.reverse-flow:hover .step-component__image img {
      transform: rotateY(-33deg) translateZ(60px) scale(1.05);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3); }
    @media (max-width: 1200px) {
      .step-component.reverse-flow {
        flex-direction: column; }
        .step-component.reverse-flow .step-component__image {
          margin-left: 0; }
        .step-component.reverse-flow:hover .step-component__image img {
          transform: none; } }
  @media (max-width: 1200px) {
    .step-component {
      flex-direction: column;
      text-align: center; }
      .step-component h2 {
        margin-top: 4rem; }
      .step-component__image {
        margin-right: 0;
        margin-bottom: 1rem;
        transition: none; }
      .step-component:hover .step-component__image img {
        transform: none; } }
section[data-page-template="_default/user_dashboard"] .viewer {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  section[data-page-template="_default/user_dashboard"] .viewer .viewer__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto; }
  section[data-page-template="_default/user_dashboard"] .viewer .viewer__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center; }

#renderCanvas {
  width: 100%;
  height: 100%;
  touch-action: none; }

#InstacardLogo {
  color: blue;
  fill-color: blue;
  height: 2rem; }
