:root {
  color-scheme: light;
  --ink: #000000;
  --muted: #686868;
  --paper: #ffffff;
  --soft: #ededed;
  --lavender: #f5ebfd;
  --violet: #870ae0;
  --violet-hot: #d107fb;
  --night: #000000;
  --plum: #180b21;
  --panel: #2b2d2f;
  --line: #ededed;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

.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;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 max(32px, calc((100vw - 1244px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(237, 237, 237, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img:first-child {
  width: 77px;
  height: 40px;
  object-fit: contain;
}

.brand img:last-child {
  width: 108px;
  height: 28px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 70px;
  color: #666666;
  font-size: 16px;
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--violet);
  font-weight: 600;
}

.support-nav,
.header-actions.support-actions {
  display: none;
}

.support-nav {
  gap: 50px;
  margin-left: auto;
}

body[data-active-page="home"] .main-nav [data-route-link="home"].active {
  color: #666666;
  font-weight: 400;
}

body[data-active-page="support"] .main-nav,
body[data-active-page="support"] .main-actions {
  display: none;
}

body[data-active-page="support"] .support-nav,
body[data-active-page="support"] .header-actions.support-actions {
  display: flex;
}

.support-actions {
  margin-left: 54px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-button,
.outline-cta,
.primary-button,
.text-button,
.circle-button,
.card-option,
.post-actions button,
.support-card,
.faq-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--muted);
  border-radius: 50px;
  min-width: 122px;
}

.globe {
  width: 18px;
  height: 18px;
  color: var(--violet);
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px transparent;
}

.language-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 12px 0 18px;
  color: var(--violet);
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 33px;
}

.support-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 44px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--violet);
  border-radius: 33px;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(135, 10, 224, 0.22);
}

.button-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet);
  position: relative;
}

.button-dot::after {
  content: "";
  position: absolute;
  inset: 10px 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.language-button:hover,
.outline-cta:hover,
.primary-button:hover,
.text-button:hover,
.card-option:hover,
.post-actions button:hover,
.support-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.section {
  width: min(1276px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.centered {
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title,
.hero h1,
.cta-band h2,
.support-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title span {
  color: var(--violet);
}

.section-copy,
.hero-content > p:not(.eyebrow),
.cta-band p {
  width: min(692px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 880px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg::after,
.hero-bg img {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

.hero-content.left {
  margin-left: max(116px, calc((100vw - 1276px) / 2));
  text-align: left;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 64px);
}

.hero-home .hero-content {
  top: 124px;
  width: min(1060px, calc(100% - 40px));
}

.hero-home .hero-content > p:not(.eyebrow) {
  width: min(760px, 100%);
  margin-top: 26px;
}

.hero-card .hero-content {
  top: 12px;
  width: min(560px, calc(100% - 40px));
}

.hero-card .hero-content > p:not(.eyebrow) {
  width: min(474px, 100%);
  margin-top: 28px;
}

.hero-content > p:not(.eyebrow) {
  color: #ffffff;
}

.hero-content.left > p:not(.eyebrow) {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.hero-content.left .hero-actions {
  justify-content: flex-start;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 18px 0 20px;
  color: #ffffff;
  background: var(--violet);
  border-radius: 33px;
  font-weight: 500;
  box-shadow: 0 16px 36px rgba(135, 10, 224, 0.28);
}

.primary-button span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--violet);
  background: #ffffff;
  border-radius: 50%;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  background: transparent;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 74px;
}

.feature-tile {
  position: relative;
  min-height: 752px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 32px;
  text-align: left;
}

.feature-tile.image-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.tile-shade.dark {
  background: rgba(0, 0, 0, 0.72);
}

.tile-copy {
  position: relative;
  z-index: 3;
  padding: 48px;
}

.tile-copy.light {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
}

.tile-copy.top {
  top: 0;
  bottom: auto;
}

.tile-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.tile-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.tile-copy.light p {
  color: #fcfcfc;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  color: var(--violet);
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}

.phone-stack {
  position: absolute;
  right: -24px;
  bottom: -96px;
  width: 520px;
  height: 620px;
}

.pixel-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 460px;
  animation: float-soft 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  left: 12px;
  bottom: 220px;
  width: 258px;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.22));
  animation: float-card 5s ease-in-out infinite;
}

.card-fan {
  position: absolute;
  inset: auto 0 0;
  height: 520px;
}

.card-fan.compact {
  transform: scale(0.82);
  transform-origin: center bottom;
}

.card-shadow {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 515px;
  opacity: 0.42;
}

.fan-card {
  position: absolute;
  width: 366px;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
}

.fan-one {
  right: 70px;
  bottom: 84px;
  transform: rotate(-30deg);
}

.fan-two {
  left: 32px;
  bottom: 8px;
  transform: rotate(-45deg);
}

.fan-three {
  left: -54px;
  bottom: -36px;
  transform: rotate(-44deg);
}

.tile-visual {
  position: absolute;
  left: 5%;
  bottom: -4%;
  width: 90%;
  max-height: 74%;
  object-fit: contain;
}

.tile-visual.cover {
  left: -22%;
  width: 140%;
  max-height: none;
  height: 78%;
  object-fit: cover;
}

.premium-card {
  position: absolute;
  left: 17%;
  top: 21%;
  z-index: 2;
  width: 66%;
  filter: drop-shadow(0 0 74px rgba(135, 10, 224, 0.34));
}

.section-button {
  margin-top: 56px;
}

.dark-section {
  color: #ffffff;
  background: var(--night);
}

.dark-section .section-copy,
.dark-section .tile-copy p {
  color: var(--lavender);
}

.carousel-section {
  padding: 108px 0;
}

.card-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr 68px;
  align-items: center;
  gap: 28px;
  margin: 72px auto 0;
  max-width: 1100px;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  min-height: 430px;
}

.carousel-track img {
  width: 178px;
  opacity: 0.42;
  transform: rotate(90deg) scale(0.72);
  transition: transform 360ms ease, opacity 360ms ease, filter 360ms ease;
}

.carousel-track img.is-active {
  width: 280px;
  opacity: 1;
  filter: drop-shadow(0 0 74px rgba(135, 10, 224, 0.3));
  transform: rotate(90deg) scale(1);
}

.circle-button {
  width: 68px;
  height: 32px;
  border-radius: 1440px;
  background: var(--violet);
  position: relative;
}

.circle-button::before,
.circle-button::after {
  content: "";
  position: absolute;
  left: 24px;
  width: 16px;
  height: 2px;
  background: #ffffff;
  transform-origin: left center;
}

.circle-button::before {
  top: 11px;
  transform: rotate(135deg);
}

.circle-button::after {
  bottom: 11px;
  transform: rotate(-135deg);
}

.circle-button.next {
  transform: rotate(180deg);
}

.carousel-label {
  margin: 26px 0 0;
  font-size: 32px;
  font-weight: 600;
}

.metric-section {
  padding: 72px 0;
  background: #ffffff;
}

.metric {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.metric strong {
  color: var(--violet);
  font-size: clamp(58px, 9vw, 144px);
  line-height: 1;
  font-weight: 800;
}

.metric span {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
}

.architecture {
  padding: 92px 0;
}

.architecture-stage {
  position: relative;
  min-height: 660px;
  margin-top: 72px;
}

.architecture-phone {
  position: absolute;
  left: 50%;
  top: 42px;
  width: 376px;
  transform: translateX(-50%);
  filter: drop-shadow(-15px -11px 44px rgba(135, 10, 224, 0.24));
}

.layer-card {
  position: absolute;
  width: min(412px, 34vw);
  min-height: 124px;
  padding: 20px 24px 20px 74px;
  color: #000000;
  text-align: left;
  background: var(--lavender);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}

.layer-card:nth-of-type(1) {
  left: 8%;
  top: 120px;
}

.layer-card:nth-of-type(2) {
  left: 6%;
  top: 372px;
}

.layer-card:nth-of-type(3) {
  right: 5%;
  top: 86px;
}

.layer-card:nth-of-type(4) {
  right: 9%;
  top: 350px;
}

.layer-card strong {
  position: absolute;
  left: 0;
  bottom: -14px;
  color: rgba(135, 10, 224, 0.3);
  font-size: 64px;
  line-height: 1;
}

.layer-card h3 {
  margin: 0;
  font-size: 18px;
}

.layer-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-grid {
  margin-top: 84px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--plum);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 436px;
  height: 226px;
  border: 1px solid rgba(135, 10, 224, 0.38);
  border-radius: 48%;
  transform: rotate(-14deg);
}

.cta-band::before {
  right: -120px;
  top: 18px;
}

.cta-band::after {
  left: -120px;
  bottom: -60px;
}

.cta-band .section {
  position: relative;
  z-index: 1;
  padding: 116px 0;
}

.cta-band p {
  color: var(--lavender);
}

.card-picker {
  padding-top: 20px;
}

.card-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 580px;
}

.showcase-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  background: #f7f0fb;
  border-radius: 32px;
}

.showcase-card img {
  width: min(72%, 420px);
  transform: rotate(-18deg);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.2));
  transition: opacity 220ms ease, transform 220ms ease;
}

.showcase-copy {
  text-align: left;
}

.showcase-copy h2 {
  margin: 0;
  font-size: 36px;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.card-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.card-option {
  min-height: 42px;
  padding: 0 18px;
  color: var(--violet);
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 33px;
}

.card-option.active {
  color: #ffffff;
  background: var(--violet);
}

.social-section {
  padding: 80px 0 120px;
}

.social-rail {
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.86fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 58px;
}

.post-card,
.social-rail > img {
  min-height: 344px;
  border-radius: 32px;
}

.post-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  text-align: left;
  background: var(--panel);
}

.post-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.post-user h3,
.post-user p,
.post-card > p {
  margin: 0;
}

.post-user p {
  margin-top: 8px;
}

.post-card > p {
  font-size: 18px;
  line-height: 1.35;
}

.post-actions {
  display: flex;
  gap: 12px;
}

.post-actions button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 14px;
}

.post-actions button.active {
  color: #111111;
  background: #ffffff;
}

.social-rail > img {
  width: 100%;
  height: 344px;
  object-fit: cover;
}

.card-standards {
  padding-bottom: 130px;
}

.blog-strip {
  padding-top: 104px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.article-card {
  min-height: 260px;
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 10, 224, 0.36);
  box-shadow: 0 28px 80px rgba(135, 10, 224, 0.14);
}

.article-card span {
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.article-card h3 {
  margin: 22px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.support-hero {
  padding-top: 84px;
  background: rgba(135, 10, 224, 0.04);
  overflow: hidden;
}

.support-hero .section {
  min-height: 570px;
  position: relative;
  display: block;
  padding: 0;
}

.support-decor {
  position: absolute;
  z-index: 1;
  width: 77px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
}

.decor-one {
  left: 84px;
  top: 130px;
}

.decor-two {
  right: 262px;
  top: 112px;
  filter: grayscale(1) brightness(0.28);
}

.decor-three {
  left: 724px;
  top: 420px;
}

.decor-four {
  left: 84px;
  top: 546px;
}

.search-box {
  position: absolute;
  top: 203px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(710px, 100%);
  height: 72px;
  margin: 0;
  padding: 0 20px;
  background: #ffffff;
  border-radius: 110px;
  box-shadow: var(--shadow);
}

.search-box img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  overflow: hidden;
  object-fit: contain;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 18px;
}

.support-note {
  width: min(931px, 100%);
  margin: 0 auto 56px;
}

.support-page > .section {
  padding-top: 68px;
}

.support-note h2 {
  margin: 0;
  font-size: 28px;
}

.support-note p {
  margin: 16px auto 0;
  width: min(860px, 100%);
  color: var(--muted);
  line-height: 1.65;
}

.support-note a,
.support-note button {
  color: var(--violet);
  background: transparent;
  padding: 0;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.support-card {
  min-height: 154px;
  padding: 22px;
  color: var(--violet);
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
}

.support-card.is-hidden {
  display: none;
}

.support-page .support-card.reveal {
  opacity: 1;
  transform: none;
}

.support-empty {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  width: min(860px, 100%);
  margin: 72px auto 0;
  text-align: left;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 64px;
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.faq-panel {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open + .faq-panel {
  display: block;
}

.footer {
  color: #ffffff;
  background: #000000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  width: min(1276px, calc(100% - 40px));
  min-height: 180px;
  margin: 0 auto;
}

.footer p {
  color: #ffffff;
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer button {
  color: #ffffff;
  background: transparent;
  padding: 0;
}

.app-modal {
  width: min(460px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.app-modal::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.app-modal form {
  position: relative;
  padding: 36px;
}

.app-modal h2 {
  margin: 0;
  font-size: 32px;
}

.app-modal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 50%;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  color: #ffffff;
  background: #000000;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 20px;
  }

  .primary-nav {
    display: none;
  }

  .feature-grid,
  .card-showcase,
  .social-rail,
  .support-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 640px;
  }

  .architecture-stage {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .architecture-phone,
  .layer-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .architecture-phone {
    width: min(360px, 80%);
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .brand img:first-child {
    width: 52px;
    height: 28px;
  }

  .brand img:last-child {
    width: 86px;
    height: 22px;
  }

  .language-button {
    display: none;
  }

  .header-actions {
    position: absolute;
    top: 12px;
    right: 16px;
  }

  .outline-cta {
    width: 44px;
    padding: 0;
    font-size: 0;
    background: var(--violet);
    border-color: var(--violet);
    box-shadow: 0 12px 26px rgba(135, 10, 224, 0.28);
  }

  .outline-cta .button-dot {
    margin: 0 auto;
    background: #ffffff;
  }

  .outline-cta .button-dot::after {
    border-color: var(--violet);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .hero-content.left {
    width: calc(100% - 32px);
    max-width: 358px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions,
  .hero-content.left .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .section {
    width: min(100% - 28px, 1276px);
    padding: 82px 0;
  }

  .section-title,
  .hero h1,
  .cta-band h2,
  .support-hero h1 {
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 14px;
  }

  .feature-grid {
    gap: 20px;
    margin-top: 42px;
  }

  .feature-tile {
    min-height: 560px;
    border-radius: 24px;
  }

  .tile-copy {
    padding: 28px;
  }

  .phone-stack {
    right: -122px;
    bottom: -122px;
    transform: scale(0.78);
  }

  .card-fan {
    transform: scale(0.74);
    transform-origin: center bottom;
  }

  .card-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
  }

  .carousel-track {
    gap: 16px;
    min-height: 310px;
  }

  .carousel-track img {
    width: 90px;
  }

  .carousel-track img.is-active {
    width: 170px;
  }

  .circle-button {
    width: 44px;
  }

  .social-rail > img,
  .post-card {
    min-height: 260px;
  }

  .support-card {
    min-height: 112px;
    font-size: 20px;
  }

  .modal-actions,
  .footer nav {
    flex-wrap: wrap;
  }
}
