@font-face {
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/google-sans-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: "Google Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/google-sans-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,
[data-theme="dark"]{
  color-scheme: dark;
  --font-site-sans: "Google Sans";
  --ink: #f4f1f6;
  --muted: #a7a3ac;
  --muted-bright: #c9c4cf;
  --orange: #ff5a28;
  --purple: #7138ff;
  --paper: #100f11;
  --surface: #171619;
  --surface-raised: #1d1b20;
  --surface-soft: #222024;
  --line: #353239;
}
*{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}
body{
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-site-sans), Arial, Helvetica, sans-serif;
}
a{
  color: inherit;
  text-decoration: none;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}
.shell{
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header{
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--paper);
  color: var(--ink);
  position: relative;
  z-index: 10;
}
.nav-wrap{
  height: 100%;
  width: min(1320px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-switcher{
  position: relative;
  display: flex;
  align-items: center;
}
.theme-switcher button{
  appearance: none;
  border: 0;
  font-family: var(--font-site-sans), Arial, sans-serif;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}
.theme-trigger{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #3b383f !important;
  border-radius: 8px;
  background: #1b1a1d;
  color: var(--muted-bright);
}
.theme-trigger:hover,
.theme-trigger[aria-expanded="true"]{
  color: var(--ink);
  background: #29272b;
  border-color: #55515a !important;
}
.theme-switcher svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-switcher .theme-icon-fill{
  fill: currentColor;
  stroke: none;
}
.theme-menu{
  position: absolute;
  z-index: 50;
  right: 0;
  top: calc(100% + 9px);
  width: 185px;
  padding: 6px;
  border: 1px solid #3b383f;
  border-radius: 9px;
  background: #1d1b20;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.theme-menu button{
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr 16px;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted-bright);
  font-size: 13px;
  text-align: left;
}
.theme-menu button:hover{
  color: var(--ink);
  background: #29272b;
}
.theme-menu button.is-active{
  color: var(--ink);
  background: #302d33;
}
.theme-menu-check{
  opacity: 0;
  color: var(--orange);
  font-weight: 700;
  text-align: center;
}
.theme-menu button.is-active .theme-menu-check{
  opacity: 1;
}
.footer-theme-switcher{
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 0 !important;
  margin-top: 4px;
  padding: 3px;
  border: 1px solid #353239;
  border-radius: 8px;
  background: #181719;
  overflow: hidden;
}
.footer-theme-switcher button{
  appearance: none;
  width: 34px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}
.footer-theme-switcher button:first-child{
  border-radius: 5px 0 0 5px;
}
.footer-theme-switcher button:last-child{
  border-radius: 0 5px 5px 0;
}
.footer-theme-switcher button + button{
  border-left: 1px solid #302e33;
}
.footer-theme-switcher button:hover{
  color: var(--ink);
  background: #242227;
}
.footer-theme-switcher button.is-active{
  color: var(--ink);
  background: #302d33;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}
.footer-theme-switcher svg{
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-theme-switcher .theme-icon-fill{
  fill: currentColor;
  stroke: none;
}
.feature-band article:after,
.panel-copy > div:after,
.small-panel:after,
.mini-grid article:after,
.workflow-cards article:after,
.stage-luminous .transfer-file:before,
.lead-copy small:before{
  display: none !important;
}
.brand{
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
}
.brand img{
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.brand:hover{
  opacity: 0.82;
}
.nav-wrap nav{
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #c8c5cc;
}
.nav-wrap nav a:hover{
  color: white;
}
.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--orange);
  color: white;
  padding: 16px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}
.button:hover{
  background: #d94717;
}
.button-secondary{
  background: #29272b;
  border: 1px solid #454248;
  padding: 11px 16px;
  gap: 13px;
}
.button-secondary:hover{
  background: #353238;
  border-color: #5c5861;
}
.hero{
  position: relative;
  text-align: center;
  color: white;
  padding-top: 83px;
}
.hero:before{
  content: "";
  position: absolute;
  z-index: -2;
  top: -72px;
  left: 50%;
  width: 100vw;
  height: 760px;
  transform: translateX(-50%);
  background: #100f11;
}
.hero:after{
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 300px;
  width: 850px;
  height: 410px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(255, 79, 31, 0.55),
    rgba(122, 38, 255, 0.24) 43%,
    transparent 72%
  );
  filter: blur(30px);
}
h1{
  font-size: clamp(54px, 7vw, 85px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 28px 0 26px;
  font-weight: 700;
}
.hero h1 em,
.showcase h2 em,
.secure-copy h2 em,
.center-heading h2 em,
.workflow-details h2 em{
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ff592b, #ff9748 45%, #a56fff);
  background-clip: text;
}
.hero > p{
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-bright);
  max-width: 670px;
  margin: 0 auto;
}
.hero > p strong{
  color: #f3f0f5;
  font-weight: 600;
}
.hero-actions{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.text-link{
  font-size: 14px;
  color: #e2dfe5;
}
.text-link:hover{
  color: #ff805d;
}
.platforms{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 24px 0 36px;
  font-size: 12px;
  color: #929098;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.platforms span{
  color: #d4d0d8;
}
.platforms i{
  width: 3px;
  height: 3px;
  background: #66626c;
  border-radius: 50%;
}
.app-frame{
  background: #242428;
  border: 1px solid #3b393f;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
.app-frame img{
  display: block;
  width: 100%;
  height: auto;
}
.theme-image-light{
  display: none !important;
}
[data-theme="light"] .theme-image-dark{
  display: none !important;
}
[data-theme="light"] .theme-image-light{
  display: block !important;
}
.hero-shot{
  position: relative;
  margin: 0 auto;
  width: min(1060px, 100%);
}
.hero-shot img{
  display: block;
  width: 100%;
  height: auto;
}
.dark-section{
  margin-top: -80px;
  padding: 180px 0 120px;
  background:
    radial-gradient(
      circle at 85% 28%,
      rgba(113, 56, 255, 0.07),
      transparent 28%
    ),
    var(--surface);
  color: var(--ink);
}
.section-heading,
.split-heading{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
}
.section-heading h2,
.split-heading h2,
.secure-copy h2,
.center-heading h2,
.cta h2{
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 0;
}
.section-heading > p,
.split-heading > p{
  max-width: 410px;
  color: var(--muted);
  line-height: 1.7;
}
.kicker{
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #a895ff;
  font-weight: 700;
}
.kicker.orange{
  color: var(--orange);
}
.feature-options{
  display: grid;
  gap: 120px;
}
.feature-option{
  position: relative;
}
.feature-option:not(.option-band){
  display: none;
}
.feature-option h3,
.panel-copy h3,
.small-panel h3,
.mini-grid h3{
  font-size: 20px;
  margin: 0 0 10px;
}
.feature-option p,
.panel-copy p,
.small-panel p,
.mini-grid p{
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
}
.option-band .section-heading{
  text-align: center;
  display: block;
}
.option-band .section-heading > p{
  margin: 22px auto 0;
}
.feature-band{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(120deg, #221d20, #1c1922 52%, #201a2d);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}
.feature-band article{
  min-height: 255px;
  padding: 39px 28px;
  position: relative;
}
.feature-band article + article:before{
  content: "";
  position: absolute;
  left: 0;
  top: 35px;
  bottom: 35px;
  width: 1px;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}
.feature-band article:after{
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff683b, #a46bff, transparent);
}
.showcase{
  padding: 115px 0;
  background: var(--paper);
}
.split-heading > p{
  color: var(--muted);
}
.screenshot-panel{
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 52px;
  padding: 42px;
  background:
    radial-gradient(
      circle at 86% 70%,
      rgba(113, 56, 255, 0.3),
      transparent 42%
    ),
    radial-gradient(circle at 6% 22%, rgba(255, 90, 40, 0.11), transparent 34%),
    linear-gradient(135deg, #201d22, #17151c);
  border-radius: 10px;
  color: white;
  position: relative;
  overflow: hidden;
}
.screenshot-panel:after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025),
    transparent 38%
  );
  pointer-events: none;
}
.screenshot-panel .app-frame,
.screenshot-panel .panel-copy{
  position: relative;
  z-index: 1;
}
.panel-copy{
  max-width: 360px;
}
.panel-copy > div:after,
.small-panel:after,
.mini-grid article:after,
.workflow-cards article:after{
  content: "";
  display: block;
  width: 118px;
  height: 1px;
  margin-top: 27px;
  background: linear-gradient(90deg, #ff6b38, #b066ff, transparent);
}
.panel-copy h3{
  margin: 0 0 8px;
}
.two-panels{
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.small-panel{
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(113, 56, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(145deg, #1d1b20, #171619);
  border: 0;
  border-radius: 10px;
  padding: 24px;
  min-height: 490px;
  position: relative;
  overflow: hidden;
}
.crop-image{
  height: auto;
  overflow: hidden;
  background: #29272d;
  border-radius: 5px;
  margin-bottom: 34px;
}
.crop-image img{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.small-panel h3{
  font-size: 24px;
}
.small-panel.accent{
  background:
    radial-gradient(
      circle at 75% 80%,
      rgba(113, 46, 255, 0.24),
      transparent 45%
    ),
    linear-gradient(145deg, #211a29, #121114);
  color: white;
  border: 0;
  position: relative;
  overflow: hidden;
}
.small-panel.accent:before{
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #772eff;
  filter: blur(75px);
  bottom: -100px;
  right: -90px;
  z-index: 0;
  pointer-events: none;
}
.small-panel.accent > *{
  position: relative;
  z-index: 1;
}
.secure-section{
  background: #151417;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.secure-glow{
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 65, 32, 0.45),
    rgba(105, 29, 255, 0.28) 44%,
    transparent 70%
  );
  left: -280px;
  bottom: -380px;
}
.secure-grid{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
  position: relative;
}
.secure-copy p{
  color: var(--muted);
  line-height: 1.7;
  margin: 25px 0 30px;
}
.secure-copy ul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  font-size: 14px;
}
.secure-copy li{
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--orange);
  -webkit-mask: url("icons/circle-check-regular-full.svg") center/contain
    no-repeat;
  mask: url("icons/circle-check-regular-full.svg") center/contain no-repeat;
}
.tilted-shot{
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.transfer{
  padding: 120px 0;
  background: var(--paper);
}
.center-heading{
  text-align: center;
}
.center-heading > p{
  color: var(--muted);
  max-width: 650px;
  margin: 18px auto 0;
  line-height: 1.7;
}
.transfer-stage-options{
  display: grid;
  gap: 30px;
  margin: 48px 0 20px;
}
.transfer-stage{
  min-height: 240px;
  margin: 0;
  padding: 38px;
  border: 0;
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 70% 55%,
      rgba(113, 56, 255, 0.25),
      transparent 38%
    ),
    radial-gradient(circle at 18% 35%, rgba(255, 90, 40, 0.1), transparent 32%),
    linear-gradient(135deg, #1c191f, #121114);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  overflow: hidden;
}
.transfer-file{
  width: 150px;
  height: 105px;
  padding: 22px;
  border: 0;
  background: linear-gradient(145deg, #27242a, #1d1b20);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  transform: rotate(-3deg);
  transition: background-color 0.22s ease;
}
.transfer-file b{
  font-size: 30px;
  color: #ff6c42;
}
.transfer-file:nth-child(2){
  width: 142px;
  transform: translateY(8px) rotate(2deg);
  background: linear-gradient(145deg, #33244b, #201b25);
}
.transfer-file:nth-child(2) b{
  color: #b699ff;
}
.transfer-file:nth-child(3){
  width: 138px;
  transform: translateY(-5px) rotate(-1deg);
  background: linear-gradient(145deg, #242228, #19181c);
}
.transfer-file:nth-child(3) b{
  color: #f38b50;
}
.transfer-file:nth-child(4){
  width: 165px;
  transform: translateY(5px) rotate(3deg);
  background: linear-gradient(145deg, #30253b, #1e1a25);
}
.transfer-file:nth-child(4) b{
  color: #c28cff;
}
.transfer-file:nth-child(5){
  width: 142px;
  transform: translateY(-3px) rotate(-2deg);
  background: linear-gradient(145deg, #292329, #1c191e);
}
.transfer-file:nth-child(5) b{
  color: #ff845d;
}
.stage-luminous{
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 92, 39, 0.24),
      transparent 48%
    ),
    radial-gradient(
      circle at 72% 10%,
      rgba(129, 72, 255, 0.3),
      transparent 43%
    ),
    linear-gradient(135deg, #211e24, #151417);
}
.stage-luminous .transfer-file{
  position: relative;
  background: linear-gradient(145deg, #3a363e, #252229);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.1);
}
.stage-luminous .transfer-file:before{
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6d3d,
    #a777ff,
    transparent
  );
  box-shadow: 0 0 15px #ff6938;
}
.stage-luminous .transfer-file b{
  font-size: 28px;
  color: #f4f1f6;
  text-shadow: 0 0 20px rgba(255, 107, 56, 0.35);
}
.stage-spaced{
  gap: 34px;
}
.stage-spaced .transfer-file{
  width: 135px;
  height: 95px;
  padding: 20px;
}
.stage-spaced .transfer-file:nth-child(2){
  width: 128px;
}
.stage-spaced .transfer-file:nth-child(3){
  width: 124px;
}
.stage-spaced .transfer-file:nth-child(4){
  width: 149px;
}
.stage-spaced .transfer-file:nth-child(5){
  width: 128px;
}
.mini-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.mini-grid article{
  background:
    radial-gradient(circle at 100% 0, rgba(113, 56, 255, 0.1), transparent 38%),
    linear-gradient(145deg, #1d1b20, #171619);
  border: 0;
  border-radius: 10px;
  padding: 34px 30px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
.workflow-details{
  padding: 115px 0;
  background:
    radial-gradient(
      circle at 90% 22%,
      rgba(113, 56, 255, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 40%,
      rgba(255, 90, 40, 0.055),
      transparent 26%
    ),
    var(--surface);
}
.workflow-variant{
  display: none;
}
.workflow-lead{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: center;
  background:
    radial-gradient(
      circle at 94% 65%,
      rgba(113, 56, 255, 0.27),
      transparent 42%
    ),
    radial-gradient(circle at 3% 25%, rgba(255, 90, 40, 0.11), transparent 32%),
    linear-gradient(135deg, #201d22, #17151d);
  border: 0;
  border-radius: 10px;
  padding: 52px;
  margin-bottom: 20px;
  overflow: hidden;
}
.lead-copy h3,
.workflow-cards h3{
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.lead-copy p,
.workflow-cards p{
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.lead-copy small{
  display: block;
  color: var(--muted);
  margin-top: 29px;
  padding-top: 24px;
  line-height: 1.5;
  position: relative;
}
.lead-copy small:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 1px;
  background: linear-gradient(
    90deg,
    #ff6b38,
    #a966ff,
    rgba(255, 255, 255, 0.13) 45%,
    rgba(255, 255, 255, 0.13) 100%
  );
}
.detail-visual{
  background: linear-gradient(135deg, #2b2730, #19181b);
  border-radius: 5px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.detail-visual:before{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #702fff;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.32;
  right: -70px;
  bottom: -90px;
}
.detail-visual > img{
  position: relative;
  width: min(76%, 350px);
  height: auto;
  image-rendering: auto;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}
.workspace-visual{
  width: min(448px, 100%);
  padding: 0;
  background: none;
  justify-self: center;
}
.workspace-visual .app-frame{
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: none;
}
.workspace-visual img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.workflow-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.workflow-cards article{
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(113, 56, 255, 0.11),
      transparent 36%
    ),
    linear-gradient(145deg, #1d1b20, #171619);
  border: 0;
  border-radius: 10px;
  padding: 22px;
  overflow: hidden;
}
.workflow-cards .detail-visual{
  margin: 0 0 28px;
}
.workflow-cards .detail-visual > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: none;
}
.workflow-cards h3{
  font-size: 21px;
}
.workflow-cards p{
  font-size: 14px;
}
.showcase .app-frame,
.workflow-details .app-frame{
  border: 0;
}
.faq-comparison{
  padding: 115px 0;
  background: var(--paper);
}
.faq-comparison > .shell{
  display: grid;
  gap: 120px;
}
.faq-option{
  position: relative;
}
.faq-option:not(.faq-bordered-grid){
  display: none;
}
.faq-heading h2{
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 45px;
}
.faq-item h3{
  font-size: 17px;
  margin: 0;
}
.faq-item button{
  appearance: none;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item button i{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  position: relative;
  transition: transform 0.32s ease;
}
.faq-item button i:before,
.faq-item button i:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}
.faq-item button i:after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open button i{
  transform: rotate(180deg);
}
.faq-item.is-open button i:after{
  opacity: 0;
}
.faq-answer{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.38s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.28s ease;
}
.faq-answer > div{
  overflow: hidden;
}
.faq-answer p{
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding: 0 36px 25px 0;
}
.faq-item.is-open .faq-answer{
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-spaced-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px;
}
.faq-spaced-grid .faq-item{
  min-width: 0;
}
.faq-box-grid .faq-item{
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 24px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}
@media (hover: hover) {
  .faq-box-grid .faq-item:has(> h3 button:hover){
    border-color: #514c56;
    background: rgba(255, 255, 255, 0.012);
  }
}
.cta{
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  background: #121114;
  padding: 105px 0;
}
.cta-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 52% 92%,
      rgba(237, 102, 0, 0.58) 0,
      rgba(255, 75, 43, 0.3) 28%,
      transparent 62%
    ),
    radial-gradient(
      ellipse at 20% 115%,
      rgba(144, 45, 255, 0.22),
      transparent 50%
    ),
    linear-gradient(180deg, #121114 0%, #171216 100%);
}
.cta .shell{
  position: relative;
  z-index: 2;
}
.cta > div span,
.cta .shell > span{
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #c2bec8;
}
.cta p{
  color: var(--muted-bright);
}
.store-downloads{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 22px;
}
.store-download{
  width: 244px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 18px;
  border: 1px solid var(--orange);
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.store-download:hover{
  background: #d94717;
  border-color: #d94717;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.store-download > span{
  color: inherit !important;
  letter-spacing: normal !important;
  font-size: inherit !important;
}
.store-icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
}
.store-icon svg{
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.snapcraft-mark{
  display: block;
  width: 31px;
  height: 31px;
  color: inherit !important;
  background: currentColor;
  -webkit-mask: url("icons/snapcraft-logo-bird.svg") center/contain no-repeat;
  mask: url("icons/snapcraft-logo-bird.svg") center/contain no-repeat;
}
.store-download > span:last-child{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.store-download small{
  font-size: 11px;
  line-height: 1;
  color: inherit;
  opacity: 0.72;
}
.store-download strong{
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.direct-downloads{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
}
.direct-downloads > span{
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #8f8993 !important;
}
.direct-downloads a{
  color: var(--muted-bright);
}
.direct-downloads a:hover{
  color: #ff805d;
}
.direct-downloads a small{
  color: inherit;
  opacity: 0.65;
}
.direct-downloads i{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #706a74;
}
.cta .beta-note{
  display: block;
  margin: 22px auto 0;
  color: #c9c4cf;
  font-size: 12px;
  line-height: 1.5;
}
.cta .beta-note b{
  color: #ff8b68;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta .free-note{
  display: block;
  margin-top: 8px;
  color: #aaa4ad;
}
footer{
  background: #0f0e10;
  color: white;
  padding: 70px 0 25px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.7fr 0.7fr;
  gap: 40px;
}
.footer-top .brand{
  font-size: 14px;
}
.footer-top > .footer-brand{
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
}
.footer-top p{
  color: #77737b;
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}
.footer-top > div{
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #85818a;
}
.footer-top > div b{
  color: white;
  margin-bottom: 7px;
}
.footer-top > div a:hover{
  color: #d8d4dc;
}
.footer-bottom{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #29272b;
  margin-top: 55px;
  padding-top: 25px;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom > span:last-child{
  text-align: right;
}
.copyright-symbol{
  font-size: 1em;
  line-height: inherit;
  font-family: Arial, Helvetica, sans-serif;
  vertical-align: baseline;
}
.made-in-poland{
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.poland-flag{
  width: 18px;
  height: auto;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

@media (max-width: 800px) {
  .shell{
    width: min(100% - 32px, 1180px);
  }
  .nav-wrap{
    width: calc(100% - 32px);
  }
  .nav-wrap nav{
    display: none;
  }
  .site-header .button{
    display: none;
  }
  .header-actions{
    gap: 0;
  }
  .hero{
    padding-top: 60px;
  }
  .hero > p{
    font-size: 16px;
  }
  .hero-actions{
    flex-direction: column;
    gap: 18px;
  }
  .hero-shot{
    border-radius: 5px;
  }
  .dark-section{
    margin-top: -20px;
    padding-top: 100px;
  }
  .section-heading,
.split-heading{
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .section-heading > p,
.split-heading > p{
    margin: 0;
  }
  .feature-band,
.screenshot-panel,
.two-panels,
.secure-grid,
.mini-grid,
.workflow-lead,
.workflow-cards,
.footer-top{
    grid-template-columns: 1fr;
  }
  .feature-options{
    gap: 90px;
  }
  .feature-band article{
    min-height: auto;
  }
  .feature-band article + article:before{
    left: 28px;
    right: 28px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .feature-band article:first-child:after{
    display: none;
  }
  .screenshot-panel{
    padding: 24px;
  }
  .two-panels{
    gap: 16px;
  }
  .small-panel{
    min-height: auto;
  }
  .small-panel.accent{
    border-radius: 10px;
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
  .secure-grid{
    gap: 50px;
  }
  .tilted-shot{
    transform: none;
  }
  .mini-grid article{
    min-height: auto;
  }
  .workflow-lead{
    padding: 28px;
    gap: 35px;
  }
  .workflow-cards{
    gap: 16px;
  }
  .transfer-stage{
    min-height: 180px;
    height: auto;
    padding: 26px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .transfer-file,
.transfer-file:nth-child(n){
    width: 108px;
    height: 82px;
    padding: 16px;
  }
  .transfer-file b{
    font-size: 22px;
  }
  .stage-spaced{
    gap: 22px;
  }
  .stage-spaced .transfer-file,
.stage-spaced .transfer-file:nth-child(n){
    width: 98px;
    height: 74px;
    padding: 14px;
  }
  .faq-comparison > .shell{
    gap: 90px;
  }
  .footer-top{
    gap: 35px;
  }
  .footer-bottom{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-bottom > span:last-child{
    text-align: left;
  }
  .store-downloads{
    flex-direction: column;
    align-items: center;
  }
  .store-download{
    width: min(100%, 320px);
  }
  .direct-downloads{
    flex-wrap: wrap;
    max-width: 330px;
    margin-inline: auto;
  }
  .direct-downloads > span{
    flex-basis: 100%;
  }
  .app-frame{
    border-radius: 5px;
  }
  .showcase,
.transfer,
.faq-comparison,
.secure-section,
.workflow-details{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .faq-heading h2{
    margin-bottom: 32px;
  }
  .faq-item button{
    padding: 21px 0;
  }
  .faq-answer p{
    padding-right: 16px;
  }
  .faq-comparison > .shell{
    gap: 75px;
  }
  .faq-spaced-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .transfer-stage{
    padding: 24px 12px;
    gap: 9px;
  }
  .transfer-file,
.transfer-file:nth-child(n){
    width: 82px;
    height: 68px;
    padding: 12px;
  }
  .transfer-file b{
    font-size: 18px;
    white-space: nowrap;
  }
  .stage-spaced{
    gap: 15px;
  }
  .stage-spaced .transfer-file,
.stage-spaced .transfer-file:nth-child(n){
    width: 74px;
    height: 61px;
    padding: 10px;
  }
  .stage-spaced .transfer-file:nth-child(4){
    width: 86px;
  }
}

@media (max-width: 430px) {
  .site-header .brand span{
    display: none;
  }
}

[data-theme="light"]{
  color-scheme: light;
  --ink: #242127;
  --muted: #65616a;
  --muted-bright: #514d56;
  --paper: #f8f7f9;
  --surface: #f1eff3;
  --surface-raised: #fff;
  --surface-soft: #eeebf0;
  --line: #d8d4dc;
}
[data-theme="light"] body{
  background: var(--paper);
  color: var(--ink);
}
[data-theme="light"] .site-header{
  border-bottom-color: rgba(31, 27, 34, 0.1);
  background: rgba(248, 247, 249, 0.96);
}
[data-theme="light"] .nav-wrap nav{
  color: #6d6872;
}
[data-theme="light"] .nav-wrap nav a:hover{
  color: #1f1c22;
}
[data-theme="light"] .theme-trigger{
  color: #514d56;
  background: #fff;
  border-color: #d5d1d8 !important;
}
[data-theme="light"] .theme-trigger:hover,
[data-theme="light"] .theme-trigger[aria-expanded="true"]{
  color: #242127;
  background: #eeecef;
  border-color: #bbb5c0 !important;
}
[data-theme="light"] .theme-menu{
  border-color: #d5d1d8;
  background: #fff;
  box-shadow: 0 16px 40px rgba(45, 36, 50, 0.16);
}
[data-theme="light"] .theme-menu button{
  color: #514d56;
}
[data-theme="light"] .theme-menu button:hover,
[data-theme="light"] .theme-menu button.is-active{
  color: #242127;
  background: #f0edf2;
}
[data-theme="light"] .footer-theme-switcher{
  background: #f1eff3;
  border-color: #d3cfd6;
}
[data-theme="light"] .footer-theme-switcher button{
  color: #65616a;
}
[data-theme="light"] .footer-theme-switcher button + button{
  border-left-color: #d9d5dc;
}
[data-theme="light"] .footer-theme-switcher button:hover{
  color: #242127;
  background: #f9f8fa;
}
[data-theme="light"] .footer-theme-switcher button.is-active{
  color: #242127;
  background: #fff;
  box-shadow: 0 1px 4px rgba(34, 28, 38, 0.14);
}
[data-theme="light"] .button-secondary{
  background: #fff;
  border-color: #d6d2d9;
  color: #29262c;
}
[data-theme="light"] .button-secondary:hover{
  background: #ece9ee;
  border-color: #c5c0c9;
}
[data-theme="light"] .hero{
  color: var(--ink);
}
[data-theme="light"] .hero:before{
  background: #f8f7f9;
}
[data-theme="light"] .hero:after{
  background: radial-gradient(
    ellipse,
    rgba(255, 104, 55, 0.26),
    rgba(122, 72, 255, 0.14) 43%,
    transparent 72%
  );
}
[data-theme="light"] .hero > p strong{
  color: #2d2930;
}
[data-theme="light"] .text-link{
  color: #5c5761;
}
[data-theme="light"] .text-link:hover{
  color: #dc4a1d;
}
[data-theme="light"] .platforms{
  color: #89848e;
}
[data-theme="light"] .platforms span{
  color: #58535d;
}
[data-theme="light"] .platforms i{
  background: #aaa5ae;
}
[data-theme="light"] .app-frame{
  background: #fff;
  border-color: #d8d4dc;
  box-shadow: 0 24px 65px rgba(47, 38, 51, 0.14);
}
[data-theme="light"] .dark-section{
  background:
    radial-gradient(
      circle at 85% 28%,
      rgba(113, 56, 255, 0.055),
      transparent 28%
    ),
    var(--surface);
}
[data-theme="light"] .kicker{
  color: #7351d6;
}
[data-theme="light"] .feature-band{
  background: linear-gradient(120deg, #fff, #f5f2f7 52%, #f2eef8);
  box-shadow:
    inset 0 0 0 1px rgba(48, 40, 53, 0.07),
    0 18px 55px rgba(50, 39, 56, 0.06);
}
[data-theme="light"] .feature-band article + article:before{
  background: linear-gradient(transparent, rgba(50, 43, 55, 0.13), transparent);
}
[data-theme="light"] .showcase{
  background: var(--paper);
}
[data-theme="light"] .screenshot-panel{
  color: var(--ink);
  background:
    radial-gradient(
      circle at 86% 70%,
      rgba(113, 56, 255, 0.13),
      transparent 42%
    ),
    radial-gradient(circle at 6% 22%, rgba(255, 90, 40, 0.08), transparent 34%),
    linear-gradient(135deg, #fff, #f1eef4);
}
[data-theme="light"] .screenshot-panel:after{
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.45),
    transparent 38%
  );
}
[data-theme="light"] .small-panel,
[data-theme="light"] .small-panel.accent{
  color: var(--ink);
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(113, 56, 255, 0.07),
      transparent 35%
    ),
    linear-gradient(145deg, #fff, #f3f1f4);
}
[data-theme="light"] .small-panel.accent:before{
  background: #bfaaff;
  opacity: 0.32;
}
[data-theme="light"] .crop-image{
  background: #fff;
}
[data-theme="light"] .secure-section{
  background: #f1eff3;
  color: var(--ink);
}
[data-theme="light"] .secure-glow{
  background: radial-gradient(
    circle,
    rgba(255, 92, 47, 0.17),
    rgba(113, 56, 255, 0.1) 44%,
    transparent 70%
  );
}
[data-theme="light"] .transfer{
  background: var(--paper);
}
[data-theme="light"] .transfer-stage{
  background:
    radial-gradient(
      circle at 70% 55%,
      rgba(113, 56, 255, 0.13),
      transparent 38%
    ),
    radial-gradient(
      circle at 18% 35%,
      rgba(255, 90, 40, 0.08),
      transparent 32%
    ),
    linear-gradient(135deg, #fff, #eeeaf1);
}
[data-theme="light"] .stage-luminous{
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 92, 39, 0.14),
      transparent 48%
    ),
    radial-gradient(
      circle at 72% 10%,
      rgba(129, 72, 255, 0.15),
      transparent 43%
    ),
    linear-gradient(135deg, #fff, #efecf2);
}
[data-theme="light"] .stage-luminous .transfer-file{
  background: linear-gradient(145deg, #fff, #ebe7ed);
  box-shadow:
    0 18px 38px rgba(45, 36, 50, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .stage-luminous .transfer-file b{
  color: #29252d;
  text-shadow: 0 0 18px rgba(255, 107, 56, 0.22);
}
[data-theme="light"] .mini-grid article{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(113, 56, 255, 0.06),
      transparent 38%
    ),
    linear-gradient(145deg, #fff, #f2f0f3);
}
[data-theme="light"] .workflow-details{
  background:
    radial-gradient(
      circle at 90% 22%,
      rgba(113, 56, 255, 0.055),
      transparent 28%
    ),
    radial-gradient(circle at 8% 40%, rgba(255, 90, 40, 0.04), transparent 26%),
    var(--surface);
}
[data-theme="light"] .workflow-lead{
  background:
    radial-gradient(
      circle at 94% 65%,
      rgba(113, 56, 255, 0.12),
      transparent 42%
    ),
    radial-gradient(circle at 3% 25%, rgba(255, 90, 40, 0.07), transparent 32%),
    linear-gradient(135deg, #fff, #efecf2);
}
[data-theme="light"] .detail-visual{
  background: #fff;
}
[data-theme="light"] .detail-visual:before{
  opacity: 0.08;
}
[data-theme="light"] .workflow-cards article{
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(113, 56, 255, 0.06),
      transparent 36%
    ),
    linear-gradient(145deg, #fff, #f1eff3);
}
[data-theme="light"] .workflow-variant{
  display: block;
  background: #efedf1;
}
[data-theme="light"] .workflow-variant .workflow-lead,
[data-theme="light"] .workflow-variant .workflow-cards article{
  position: relative;
  background-color: #f3f1f4;
  box-shadow: 0 12px 34px #2f263300;
}
[data-theme="dark"] .workflow-variant{
  display: block;
  background: #151417;
}
[data-theme="dark"] .workflow-variant .workflow-lead,
[data-theme="dark"] .workflow-variant .workflow-cards article{
  position: relative;
  background-color: #1d1b20;
  box-shadow: none;
}
[data-theme="light"] .showcase{
  background: var(--paper);
}
[data-theme="light"] .screenshot-panel{
  background:
    radial-gradient(
      circle at 86% 70%,
      rgba(113, 56, 255, 0.13),
      transparent 42%
    ),
    radial-gradient(circle at 6% 22%, rgba(255, 90, 40, 0.08), transparent 34%),
    #fff;
  box-shadow: none;
}
[data-theme="light"] .screenshot-panel:after{
  display: block;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.45),
    transparent 38%
  );
}
[data-theme="light"] .small-panel,
[data-theme="light"] .small-panel.accent{
  background: #fff;
  box-shadow: none;
}
[data-theme="light"] .two-panels .small-panel:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(36, 126, 255, 0.15),
      transparent 72%
    ),
    #fff;
}
[data-theme="light"] .small-panel.accent{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(113, 46, 255, 0.11),
      transparent 38%
    ),
    radial-gradient(
      ellipse 78% 145% at 100% 100%,
      rgba(113, 46, 255, 0.24),
      transparent 78%
    ),
    #fff;
}
[data-theme="light"] .small-panel.accent:before{
  display: block;
  background: #b295ff;
  opacity: 0.38;
}
[data-theme="dark"] .showcase{
  background: var(--paper);
}
[data-theme="dark"] .screenshot-panel{
  background:
    radial-gradient(
      circle at 86% 70%,
      rgba(113, 56, 255, 0.3),
      transparent 42%
    ),
    radial-gradient(circle at 6% 22%, rgba(255, 90, 40, 0.11), transparent 34%),
    #1d1b20;
  box-shadow: none;
}
[data-theme="dark"] .screenshot-panel:after{
  display: block;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025),
    transparent 38%
  );
}
[data-theme="dark"] .small-panel,
[data-theme="dark"] .small-panel.accent{
  background: #1d1b20;
  box-shadow: none;
}
[data-theme="dark"] .two-panels .small-panel:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(29, 118, 255, 0.26),
      transparent 72%
    ),
    #1d1b20;
}
[data-theme="dark"] .small-panel.accent{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(113, 46, 255, 0.19),
      transparent 38%
    ),
    radial-gradient(
      ellipse 78% 145% at 100% 100%,
      rgba(113, 46, 255, 0.34),
      transparent 78%
    ),
    #1d1b20;
}
[data-theme="dark"] .small-panel.accent:before{
  display: block;
}
[data-theme="light"] .transfer{
  background: var(--paper);
}
[data-theme="light"] .stage-luminous{
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 92, 39, 0.14),
      transparent 48%
    ),
    radial-gradient(
      circle at 72% 10%,
      rgba(129, 72, 255, 0.15),
      transparent 43%
    ),
    linear-gradient(135deg, #fff, #efecf2);
}
[data-theme="light"] .mini-grid article{
  background: #fff;
  box-shadow: none;
}
[data-theme="light"] .mini-grid article:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(36, 126, 255, 0.15),
      transparent 72%
    ),
    #fff;
}
[data-theme="light"] .mini-grid article:nth-child(3){
  background:
    radial-gradient(circle at 100% 0, rgba(255, 94, 28, 0.24), transparent 34%),
    #fff;
}
[data-theme="dark"] .transfer{
  background: var(--paper);
}
[data-theme="dark"] .stage-luminous{
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 92, 39, 0.24),
      transparent 48%
    ),
    radial-gradient(
      circle at 72% 10%,
      rgba(129, 72, 255, 0.3),
      transparent 43%
    ),
    linear-gradient(135deg, #211e24, #151417);
}
[data-theme="dark"] .mini-grid article{
  background: #1d1b20;
  box-shadow: none;
}
[data-theme="dark"] .mini-grid article:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(29, 118, 255, 0.26),
      transparent 72%
    ),
    #1d1b20;
}
[data-theme="dark"] .mini-grid article:nth-child(3){
  background:
    radial-gradient(circle at 100% 0, rgba(255, 83, 19, 0.38), transparent 34%),
    #1d1b20;
}

/* Comparison variant: the same sparse accents on a lighter section and card base. */
[data-theme="light"] .workflow-3h{
  background: #f2f2f2;
}
[data-theme="light"] .workflow-3h .workflow-lead{
  background:
    radial-gradient(circle at 0 100%, rgba(255, 90, 24, 0.18), transparent 27%),
    radial-gradient(
      ellipse 80% 112% at 100% 48%,
      rgba(36, 125, 255, 0.12),
      transparent 72%
    ),
    #fff;
}
[data-theme="light"] .workflow-3h .workflow-cards article:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(36, 126, 255, 0.15),
      transparent 72%
    ),
    #fff;
}
[data-theme="light"] .workflow-3h .workflow-cards article:nth-child(2){
  background: #fff;
}
[data-theme="light"] .workflow-3h .workflow-cards article:nth-child(3){
  background:
    radial-gradient(
      ellipse 88% 82% at 100% 0,
      rgba(255, 94, 28, 0.48) 0,
      rgba(255, 112, 37, 0.34) 38%,
      rgba(255, 140, 72, 0.14) 68%,
      transparent 100%
    ),
    #fff;
}
[data-theme="dark"] .workflow-3h{
  background: #1d1c20;
}
[data-theme="dark"] .workflow-3h .workflow-lead{
  background:
    radial-gradient(circle at 0 100%, rgba(255, 80, 16, 0.29), transparent 27%),
    radial-gradient(
      ellipse 80% 112% at 100% 48%,
      rgba(29, 117, 255, 0.22),
      transparent 72%
    ),
    #2a282d;
}
[data-theme="dark"] .workflow-3h .workflow-cards article:nth-child(1){
  background:
    radial-gradient(
      ellipse 56% 46% at 0 58%,
      rgba(29, 118, 255, 0.26),
      transparent 72%
    ),
    #2a282d;
}
[data-theme="dark"] .workflow-3h .workflow-cards article:nth-child(2){
  background: #2a282d;
}
[data-theme="dark"] .workflow-3h .workflow-cards article:nth-child(3){
  background:
    radial-gradient(
      ellipse 88% 82% at 100% 0,
      rgba(255, 83, 19, 0.66) 0,
      rgba(255, 101, 29, 0.46) 38%,
      rgba(255, 126, 53, 0.2) 68%,
      transparent 100%
    ),
    #2a282d;
}
[data-theme="light"] .faq-comparison{
  background: var(--paper);
}
[data-theme="light"] .faq-box-grid .faq-item{
  border-color: #ebebeb;
}
@media (hover: hover) {
  [data-theme="light"] .faq-box-grid .faq-item:has(> h3 button:hover){
    border-color: #cfc8d3;
    background: rgba(113, 56, 255, 0.025);
  }
}
[data-theme="light"] .cta{
  color: var(--ink);
  background: #f1eff3;
}
[data-theme="light"] .cta-glow{
  background:
    radial-gradient(
      ellipse at 52% 92%,
      rgba(237, 102, 0, 0.2) 0,
      rgba(255, 75, 43, 0.12) 28%,
      transparent 62%
    ),
    radial-gradient(
      ellipse at 20% 115%,
      rgba(144, 45, 255, 0.11),
      transparent 50%
    ),
    linear-gradient(180deg, #f4f2f5 0%, #ece8ee 100%);
}
[data-theme="light"] .cta > div span,
[data-theme="light"] .cta .shell > span{
  color: #6b6570;
}
[data-theme="light"] .store-download{
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px rgba(145, 58, 28, 0.14);
}
[data-theme="light"] .store-download:hover{
  background: #d94717;
  border-color: #d94717;
  box-shadow: 0 12px 32px rgba(145, 58, 28, 0.2);
}
[data-theme="light"] .direct-downloads > span{
  color: #746e78 !important;
}
[data-theme="light"] .direct-downloads a{
  color: #514d56;
}
[data-theme="light"] .direct-downloads a:hover{
  color: #d94717;
}
[data-theme="light"] .cta .beta-note{
  color: #625d67;
}
[data-theme="light"] .cta .beta-note b{
  color: #c83d12;
}
[data-theme="light"] .cta .free-note{
  color: #706a75;
}
[data-theme="light"] footer{
  background: #eae7ec;
  color: var(--ink);
}
[data-theme="light"] .footer-top p{
  color: #625d67;
}
[data-theme="light"] .footer-top > div{
  color: #6a6570;
}
[data-theme="light"] .footer-top > div b{
  color: #242127;
}
[data-theme="light"] .footer-top > div a:hover{
  color: #d94a1d;
}
[data-theme="light"] .footer-bottom{
  border-top-color: #d3cfd6;
}
[data-theme="light"] .poland-flag{
  box-shadow: 0 0 0 1px rgba(31, 27, 34, 0.16);
}

[aria-disabled="true"]{
  cursor: not-allowed;
  opacity: 0.55;
}

.footer-link-button{
  appearance: none;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease;
}

.footer-link-button:hover{
  color: #d8d4dc;
}

[data-theme="light"] .footer-link-button:hover{
  color: #d94a1d;
}

.legal-page{
  min-height: 65vh;
  padding: 32px 0 100px;
  background: var(--paper);
}

.legal-document a{
  color: var(--orange);
}

.legal-document{
  width: min(780px, calc(100% - 48px));
  padding-top: 64px;
  color: var(--muted-bright);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-document h1,
.legal-document h2{
  color: var(--ink);
}

.legal-document h1{
  margin: 0 0 38px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-document h2{
  margin: 54px 0 16px;
  font-size: 23px;
  line-height: 1.25;
}

.legal-document p{
  margin: 0 0 20px;
}

.legal-document ul{
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-document li + li{
  margin-top: 7px;
}

.cookie-panel{
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  width: min(620px, calc(100% - 48px));
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cookie-panel[hidden]{
  display: none;
}

.cookie-panel h2{
  margin: 0 0 8px;
  font-size: 19px;
}

.cookie-panel p{
  margin: 0 0 8px;
  color: var(--muted-bright);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-panel a{
  color: var(--orange);
  font-size: 14px;
}

.cookie-actions{
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions .button{
  appearance: none;
  border: 1px solid transparent;
  padding: 11px 14px;
  font-family: inherit;
  cursor: pointer;
}

.cookie-actions .button-secondary{
  border-color: var(--line);
}

@media (max-width: 700px) {
  .legal-page{
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .legal-document{
    width: min(100% - 32px, 780px);
    padding-top: 44px;
    font-size: 15px;
  }

  .legal-document h2{
    margin-top: 42px;
  }

  .cookie-panel{
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .cookie-actions{
    flex-wrap: wrap;
  }

  .cookie-actions .button{
    flex: 1 1 150px;
  }
}
