@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/rajdhani-500.ttf") format("truetype");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/rajdhani-600.ttf") format("truetype");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/rajdhani-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --page: #f4f6ff;
  --surface: #ffffff;
  --text: #0a0b12;
  --muted: #667085;
  --soft: #8a94a8;
  --line: #dfe4ef;
  --line-strong: #ccd4e4;
  --accent: #6137f5;
  --accent-hover: #4f2ee0;
  --blue: #2b76f2;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Rajdhani", Inter, ui-sans-serif, sans-serif;
  --shell: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #ffffff;
}

.minimal-home {
  position: relative;
  min-height: max(100svh, 640px);
  overflow: hidden;
  background: #ffffff;
}

.home-lockup {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  filter: drop-shadow(0 20px 80px rgba(38, 109, 224, 0.13));
  transform: translate(-50%, -53.2%);
  text-align: center;
}

.home-mark {
  width: min(548px, 92vw);
  height: auto;
  margin: 0 auto -90px;
  filter: drop-shadow(0 22px 46px rgba(30, 112, 224, 0.15));
  object-fit: contain;
  user-select: none;
}

.home-lockup h1 {
  margin: 0;
  color: #05070b;
  font-family: var(--body);
  font-size: clamp(56px, 5.6vw, 87px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.explore-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 29px;
  color: #0757e8;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.explore-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(3431%) hue-rotate(218deg) brightness(95%) contrast(104%);
  transition: transform 180ms ease;
}

.home-email {
  position: absolute;
  bottom: clamp(32px, 4.8svh, 48px);
  left: 50%;
  color: #98a1af;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: color 180ms ease;
}

@media (hover: hover) {
  .explore-link:hover img {
    transform: translateX(4px);
  }

  .home-email:hover {
    color: #0757e8;
  }
}

@media (max-width: 600px) {
  .minimal-home {
    min-height: max(100svh, 620px);
  }

  .home-lockup {
    transform: translate(-50%, -56%);
  }

  .home-mark {
    margin-bottom: -54px;
  }

  .home-lockup h1 {
    font-size: clamp(48px, 14vw, 58px);
  }

  .explore-link {
    gap: 8px;
    margin-top: 22px;
  }

  .explore-link img {
    width: 20px;
    height: 20px;
  }
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(97, 55, 245, 0.3);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1376px, calc(100vw - 24px));
  margin: 10px auto 0;
  border: 1px solid rgba(219, 224, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(63, 73, 110, 0.1);
}

.header-inner {
  display: flex;
  width: auto;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #10131a;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 44px;
  transform: translateX(-50%);
}

.site-nav a,
.nav-text-button {
  position: relative;
  padding: 20px 0 18px;
  border: 0;
  background: transparent;
  color: #1a1d27;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.site-nav .mobile-support {
  display: none;
}

.site-nav a::after,
.nav-text-button::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-text-button:hover::after,
.nav-text-button:focus-visible::after,
.site-nav [aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.support-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #20232d;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.support-link:hover {
  border-color: #bfc7d9;
  box-shadow: 0 8px 20px rgba(46, 55, 86, 0.08);
}

.support-link img {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  cursor: pointer;
}

.menu-toggle img {
  width: 22px;
  height: 22px;
}

.home-main {
  display: grid;
  min-height: 0;
  place-items: stretch;
  padding: 48px 0 28px;
}

.home-hero {
  position: relative;
  display: grid;
  width: min(1200px, calc(100vw - 48px));
  min-height: 610px;
  margin-inline: auto;
  overflow: hidden;
  place-items: center;
  border-radius: 26px;
  background-color: rgba(255, 255, 255, 0.54);
  background-image: url("/assets/hero-glow.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(880px, calc(100% - 48px));
  padding: 56px 0 44px;
  text-align: center;
}

.hero-mark {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-hero h1 {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-description {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
}

.release-bar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px auto 0;
  padding: 10px;
  padding-left: 24px;
  border: 1px solid rgba(213, 219, 232, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(73, 73, 130, 0.12);
  text-align: left;
}

.release-message {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: #5d687d;
  font-size: 17px;
  font-weight: 500;
}

.release-message > img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  filter: invert(31%) sepia(88%) saturate(4221%) hue-rotate(246deg) brightness(99%) contrast(96%);
}

.primary-action,
.button-primary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(86, 44, 221, 0.6);
  border-radius: 14px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(97, 55, 245, 0.25);
  color: white;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.primary-action:hover,
.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 24px rgba(97, 55, 245, 0.3);
  transform: translateY(-1px);
}

.primary-action img,
.small-link img,
.button-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.small-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.small-link img {
  width: 16px;
  height: 16px;
  filter: invert(31%) sepia(88%) saturate(4221%) hue-rotate(246deg) brightness(99%) contrast(96%);
}

.home-footer,
.site-footer {
  width: min(1376px, calc(100vw - 24px));
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.home-footer-inner,
.footer-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 4px;
}

.home-footer p,
.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a,
.site-footer nav a {
  color: #5d687d;
  font-size: 13px;
  font-weight: 500;
}

.footer-links a:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.about-dialog {
  width: min(540px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 26px 80px rgba(31, 38, 70, 0.2);
}

.about-dialog::backdrop {
  background: rgba(46, 53, 75, 0.25);
  backdrop-filter: blur(5px);
}

.dialog-content {
  padding: 32px;
}

.dialog-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
}

.dialog-content p {
  margin: 16px 0 0;
  color: var(--muted);
}

.dialog-close {
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: white;
  color: var(--text);
  cursor: pointer;
  font-weight: 650;
}

/* Supporting pages */
.page-hero {
  padding: 104px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero .utility-label {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 88px);
}

.page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: white;
}

.content-page {
  max-width: 860px;
  padding: 72px 0 110px;
}

.content-page section + section {
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.content-page h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.1;
}

.content-page h3 {
  margin: 28px 0 8px;
  font-size: 19px;
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 16px;
}

.content-page a:not(.button) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(97, 55, 245, 0.3);
  text-underline-offset: 4px;
}

.info-line {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.info-line:last-child {
  border-bottom: 1px solid var(--line);
}

.info-line strong {
  color: var(--text);
}

.info-line span {
  color: var(--muted);
}

.notice {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid #ddd8ff;
  border-radius: 14px;
  background: #f8f6ff;
  color: #4c4567;
}

.project-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.project-card h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 28px;
}

.project-card p {
  margin: 4px 0 0;
}

.project-meta {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-small {
  font-size: 17px;
}

.brand-small img {
  width: 30px;
  height: 30px;
}

.site-footer {
  margin-top: 0;
}

/* Projects gallery */
body.projects-page {
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
  color: #090a0e;
}

body.projects-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: #ffffff url("/assets/hero-glow.png") center / cover no-repeat;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.projects-capsule {
  display: flex;
  width: max-content;
  min-height: 56px;
  align-items: center;
  gap: 0;
  margin: 38px auto 0;
  padding: 6px 9px;
  border: 1px solid rgba(219, 224, 233, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(51, 76, 125, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.projects-capsule-mark {
  display: grid;
  width: 56px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
}

.projects-capsule-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.projects-capsule-current,
.projects-capsule-home {
  display: inline-grid;
  min-width: 105px;
  min-height: 36px;
  place-items: center;
  color: #101118;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.projects-capsule-home {
  position: relative;
  min-width: 90px;
  color: #748096;
  font-weight: 500;
  transition: color 160ms ease;
}

.projects-capsule-home::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 1px;
  background: #e2e6ee;
  content: "";
}

.projects-capsule-home:hover {
  color: #0757e8;
}

.projects-main {
  width: min(1296px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 42px 0;
}

.projects-showcase {
  margin-top: 0;
}

.projects-card-copy h2,
.project-status-dialog h2 {
  margin: 0;
  color: #07080c;
  font-family: var(--body);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1;
}

.projects-meta {
  display: flex;
  align-items: center;
  margin-top: 24px;
  color: #69758a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.projects-meta span + span {
  display: flex;
  align-items: center;
}

.projects-meta span + span::before {
  width: 1px;
  height: 15px;
  margin: 0 20px;
  background: #dce1e9;
  content: "";
}

.projects-arrow-button,
.projects-archive-link {
  border: 0;
  background: transparent;
  color: #0757e8;
  cursor: pointer;
}

.projects-arrow-button img,
.projects-archive-link img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(94%) saturate(3431%) hue-rotate(218deg) brightness(95%) contrast(104%);
  transition: transform 180ms ease;
}

.projects-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.projects-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(220, 225, 234, 0.94);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(54, 78, 126, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.projects-card-media {
  width: 100%;
  height: auto;
  aspect-ratio: 1.95 / 1;
  flex: none;
  object-fit: cover;
  object-position: center;
}

.projects-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 25px 16px;
}

.projects-card-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.projects-card-logo {
  width: 30px;
  height: 30px;
  flex: none;
}

.projects-card-copy h2 {
  font-size: 25px;
}

.projects-card-copy p {
  margin: 12px 0 0;
  color: #717d91;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.projects-card-footer {
  display: flex;
  min-height: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
}

.projects-card-footer .projects-meta {
  margin-top: 0;
}

.projects-arrow-button {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 -10px -7px 0;
  padding: 0;
  place-items: center;
  border-radius: 999px;
}

.projects-archive-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin: 29px auto 0;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.projects-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
  .projects-card:hover {
    border-color: rgba(194, 205, 223, 0.96);
    box-shadow: 0 18px 42px rgba(54, 78, 126, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
  }

  .projects-arrow-button:hover img,
  .projects-archive-link:hover img {
    transform: translateX(4px);
  }
}

.project-status-dialog {
  width: min(460px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid rgba(218, 224, 234, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 90px rgba(35, 56, 94, 0.24);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
}

.project-status-dialog::backdrop {
  background: rgba(53, 68, 93, 0.2);
  backdrop-filter: blur(6px);
}

.project-status-dialog-inner {
  padding: 32px;
}

.project-status-eyebrow {
  margin: 0 0 12px;
  color: #0757e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-status-dialog h2 {
  font-size: 36px;
}

.project-status-dialog p:not(.project-status-eyebrow) {
  margin: 16px 0 0;
  color: #68758a;
  line-height: 1.55;
}

.project-status-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
}

.project-status-actions a,
.project-status-actions button {
  display: inline-grid;
  min-height: 44px;
  padding: 0 16px;
  place-items: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
}

.project-status-actions a {
  background: #0757e8;
  color: #ffffff;
}

.project-status-actions button {
  border: 1px solid #dbe1eb;
  background: #ffffff;
  color: #1d2633;
  cursor: pointer;
}

@media (max-width: 900px) {
  .projects-main {
    width: min(720px, calc(100vw - 32px));
  }

  .projects-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .projects-capsule {
    min-height: 52px;
    margin-top: 20px;
  }

  .projects-capsule-mark {
    width: 49px;
  }

  .projects-capsule-mark img {
    width: 31px;
    height: 31px;
  }

  .projects-capsule-current {
    min-width: 92px;
  }

  .projects-capsule-home {
    min-width: 78px;
  }

  .projects-main {
    padding: 30px 0 36px;
  }

  .projects-card {
    border-radius: 21px;
  }

  .projects-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .projects-card-copy {
    padding: 20px 21px 14px;
  }

  .projects-card-copy h2 {
    font-size: 27px;
  }

  .projects-card-copy p {
    font-size: 15px;
  }

  .projects-archive-link {
    margin-top: 23px;
  }

  .project-status-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .site-header {
    width: calc(100vw - 20px);
  }

  .header-inner {
    min-height: 60px;
    padding-inline: 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    padding: 10px 18px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 18px 38px rgba(44, 52, 86, 0.14);
    transform: none;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-text-button {
    width: 100%;
    padding: 14px 2px;
    text-align: left;
  }

  .site-nav .mobile-support {
    display: block;
  }

  .site-nav a::after,
  .nav-text-button::after {
    display: none;
  }

  .support-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-main {
    padding-top: 26px;
  }

  .home-hero {
    width: calc(100vw - 24px);
    min-height: 600px;
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .home-main {
    padding-bottom: 22px;
  }

  .home-hero {
    min-height: 600px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-block: 38px;
  }

  .hero-mark {
    width: 84px;
    height: 84px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 12.5vw, 50px);
  }

  .hero-description {
    font-size: 16px;
  }

  .release-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    text-align: left;
  }

  .release-message {
    min-height: 46px;
    font-size: 15px;
  }

  .primary-action {
    width: 100%;
  }

  .home-footer-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 4px;
  }

  .footer-links,
  .site-footer nav {
    gap: 14px 22px;
  }

  .page-hero {
    padding: 72px 0 54px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .content-page {
    padding: 56px 0 84px;
  }

  .info-line {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .button-row,
  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
