:root {
  --primary: #0c8ce9;
  --surface: #ffffff;
  --surface-alt: #f8f9fa;
  --text: #000000;
  --muted: #969696;
  --header-height: 88px;
  --shadow-sm: 0 0 2px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 2px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-lg: 32px;
  --container: 1376px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable both-edges;
}

body {
  background: var(--surface);
  color: var(--text);
  font-family: "Jaldi", sans-serif;
  line-height: 1.25;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 32px;
}

.text-primary {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 250, 0.75);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: var(--header-height);
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  --logo-scale: 1;
  display: inline-flex;
  align-items: center;
  gap: calc(10.351px * var(--logo-scale));
}

.brand-icon-wrap {
  width: calc(40px * var(--logo-scale));
  height: calc(40px * var(--logo-scale));
  border-radius: calc(10px * var(--logo-scale));
  background: var(--primary);
  display: grid;
  place-items: center;
}

.brand-icon {
  width: calc(30px * var(--logo-scale));
  height: calc(30px * var(--logo-scale));
}

.brand-word {
  width: calc(149.682px * var(--logo-scale));
  height: calc(29.991px * var(--logo-scale));
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 24px;
}

.top-nav a {
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--primary);
}

.top-nav a.active {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.burger-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.burger-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1f1f1f;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background: #ffffff;
  display: none;
  padding: 32px 24px;
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-nav a {
  font-size: 32px;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: #ffffff;
}

.btn {
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-sm {
  height: 41px;
  padding-inline: 24px;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  min-height: 58px;
  padding: 8px 24px;
  font-size: 32px;
  box-shadow: 0 0 2px var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
}

.header-install-btn {
  gap: 8px;
  padding-inline: 24px;
  white-space: nowrap;
}

.header-install-btn img {
  width: 13.867px;
  height: 16px;
  flex: 0 0 auto;
}

.btn-icon {
  gap: 16px;
}

.btn-icon img {
  width: 24px;
  height: 24px;
}

.hero {
  padding-top: 64px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.05;
}

.hero-copy {
  margin: 0;
  font-size: 32px;
  max-width: 1004px;
}

.hero-copy-desktop {
  display: inline;
}

.hero-copy-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-sub {
  margin: 0;
  font-size: 24px;
}

.showcase {
  position: relative;
  overflow: hidden;
  padding-block: 32px;
}

.showcase-bg {
  position: absolute;
  inset: 0;
}

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

.showcase-content {
  position: relative;
  width: 1440px;
  max-width: 100%;
  min-height: 760px;
}

.showcase-card {
  position: absolute;
  left: 50%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  will-change: top, transform, width, height, opacity;
  transition: top 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    height 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-main {
  top: 32px;
  transform: translateX(-50%);
  width: 843.666px;
  height: 600px;
  box-shadow: var(--shadow-card);
  opacity: 1;
  z-index: 2;
}

.showcase-left,
.showcase-right {
  top: 82px;
  width: 703px;
  height: 500px;
  box-shadow: var(--shadow-sm);
  opacity: 0.96;
  z-index: 1;
}

.showcase-left {
  transform: translateX(calc(-50% - 837.5px));
}

.showcase-right {
  transform: translateX(calc(-50% + 837.5px));
}

.showcase h2 {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  margin: 0;
  color: var(--surface);
  font-size: 64px;
  line-height: 1;
  z-index: 3;
}

.security {
  padding-top: 48px;
  padding-bottom: 16px;
}

.security-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.security-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 110px;
  padding: 22px 48px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
}

.security-pill-icon {
  width: 50px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.security-pill span {
  color: var(--surface);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.security-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 32px;
  background: #f8f9fa;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.security-card {
  min-height: 346px;
  padding: 32px;
  border-radius: 32px;
  background: var(--surface);
}

.security-chip {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 32px;
  border: 0;
  background: transparent;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.security-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain;
}

.security-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.security-card p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.security-note {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 32px;
  border-radius: 32px;
  background: var(--surface);
}

.security-note p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.security-note strong {
  color: var(--primary);
  font-weight: 700;
}

.features-page-main {
  padding-top: 24px;
}

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

.feature-intro {
  padding-top: 64px;
  padding-bottom: 40px;
}

.feature-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.feature-intro-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.feature-intro-copy h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.feature-intro-copy p {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.feature-intro-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-intro-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-cta-primary,
.feature-cta-secondary {
  min-height: 55px;
  padding: 10px 24px;
  font-size: 32px;
  box-shadow: 0 0 2px var(--primary);
}

.feature-cta-primary {
  gap: 16px;
}

.feature-cta-primary img {
  width: 20.8px;
  height: 24px;
}

.feature-cta-secondary {
  gap: 16px;
  border: 1px solid rgba(12, 140, 233, 0.25);
}

.feature-cta-secondary img {
  width: 24px;
  height: 24px;
}

.feature-intro-subtext {
  margin: 0;
  font-size: 24px;
}

.feature-intro-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 32px;
  background: var(--surface-alt);
}

.feature-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-intro-card {
  min-height: 198px;
  padding: 32px;
  border-radius: 32px;
  background: var(--surface);
}

.feature-intro-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-intro-card-title img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.feature-intro-icon-flip {
  transform: scaleX(-1);
}

.feature-intro-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.feature-intro-card p,
.feature-intro-note {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
}

.download-main {
  padding-top: 32px;
}

.download-hero {
  padding-top: 64px;
  padding-bottom: 32px;
}

.download-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.download-hero-inner h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.download-hero-inner > p {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.2;
  max-width: 1220px;
}

.download-security {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 24px;
}

.download-security img {
  width: 18.786px;
  height: 24px;
  flex: 0 0 auto;
}

.download-security-note {
  margin-top: 16px !important;
  font-size: 24px !important;
}

.download-options {
  padding-top: 0;
  padding-bottom: 32px;
}

.download-options-shell {
  padding: 32px;
  border-radius: 32px;
  background: var(--surface-alt);
}

.download-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 32px;
  border-radius: 32px;
  background: var(--surface);
}

.download-platform-icon {
  width: 40px;
  height: 40px;
}

.download-platform {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.download-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.download-version {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.download-button {
  width: 100%;
  min-height: 55px;
  margin-top: 8px;
  gap: 16px;
  padding: 10px 24px;
  font-size: 32px;
  box-shadow: 0 0 2px var(--primary);
}

.download-button img {
  width: 20.8px;
  height: 24px;
}

.new-features {
  padding-top: 64px;
  scroll-margin-top: 80px;
}

.new-features-head {
  margin-bottom: 32px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 8px 32px;
  border-radius: 32px;
  color: var(--primary);
  background: rgba(248, 249, 250, 0.65);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25), inset 0 -2px 2px rgba(0, 0, 0, 0.25);
  font-family: "Jaldi", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
}

.feature-badge img {
  display: block;
  width: 46px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.feature-badge img:last-of-type {
  transform: scaleX(-1);
}

.new-features-title {
  margin: 0;
  font-size: 64px;
}

.new-feature-card {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.new-feature-copy h3 {
  margin: 0;
  font-size: 40px;
}

.new-feature-copy p {
  margin: 0;
  font-size: 24px;
}

.feature-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.feature-title-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.access-control-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.role-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 32px;
  background: rgba(248, 249, 250, 0.2);
  box-shadow: 0 0 2px rgba(12, 140, 233, 0.25), 0 2px 4px rgba(12, 140, 233, 0.25);
  font-size: 28px;
}

.role-summary {
  margin-top: 16px !important;
  margin-bottom: 20px !important;
  font-size: 24px;
}

.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 24px;
}

.role-mark {
  flex: 0 0 auto;
  width: 22.627px;
  height: 22.627px;
  margin-top: 1px;
}

.role-mark.ok {
  width: 21px;
  height: 16px;
  margin-top: 4px;
}

.role-mark.no {
  width: 22.627px;
  height: 22.627px;
  transform: rotate(45deg);
}

.media-feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.new-feature-media {
  display: flex;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.new-feature-media img {
  display: block;
  width: min(100%, 880px);
  height: auto;
  border-radius: 12px;
}

.document-preview-image {
  width: min(100%, 703px);
  aspect-ratio: 703 / 500;
  border-radius: 8px;
  background: url("./assets/new-features/layout-annotation.png") lightgray 50% / cover no-repeat;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}

.layout-panel-image {
  width: min(100%, 703px) !important;
  background: #353535;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.report-feature-card .new-feature-media {
  background: #f8f9fa;
  min-height: 500px;
  align-items: center;
  padding: 0;
}

.report-preview-image {
  width: min(100%, 354px) !important;
  height: 500px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.features {
  padding-top: 24px;
}

#features {
  scroll-margin-top: 104px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  margin: 0;
  font-size: 64px;
}

.optimize-title,
.get-touch-title {
  --title-scale: 1;
}

.optimize-title {
  font-size: 64px !important;
}

.section-head p {
  margin: 0;
  font-size: 32px;
}

.feature-row {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 703px;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.feature-row.reverse {
  grid-template-columns: 703px 1fr;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse img {
  order: 1;
}

.feature-text {
  padding: 32px;
}

.feature-text h3 {
  margin: 0 0 32px;
  font-size: 32px;
}

.feature-text p {
  margin: 0;
  font-size: 24px;
}

.feature-row img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.feature-row .reports-img {
  width: min(407px, 100%);
  height: 500px;
  object-fit: cover;
  justify-self: center;
  box-shadow: none;
}

.about {
  padding-top: 96px;
}

.about-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-logo {
  justify-content: center;
}

.brand-large .brand-icon-wrap {
  width: calc(100px * var(--about-logo-scale, 1));
  height: calc(100px * var(--about-logo-scale, 1));
  border-radius: calc(25px * var(--about-logo-scale, 1));
}

.brand-large .brand-icon {
  width: calc(75px * var(--about-logo-scale, 1));
  height: calc(75px * var(--about-logo-scale, 1));
}

.brand-large .brand-word {
  width: calc(374.204px * var(--about-logo-scale, 1));
  height: calc(74.978px * var(--about-logo-scale, 1));
}

.about p {
  margin: 0;
  font-size: 32px;
  max-width: 1376px;
}

.contact {
  padding-top: 96px;
}

.contact-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact h2 {
  margin: 0;
  font-size: 64px;
}

.get-touch-title {
  font-size: calc(64px * var(--title-scale)) !important;
}

.contact p {
  margin: 0;
  font-size: 32px;
}

.contact-pill {
  min-height: 100px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 24px;
}

.contact-pill span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.contact-pill img {
  width: 38px;
  height: 40px;
}

.contact-pill-copy {
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid #d8d8d8;
  margin-top: 64px;
}

.site-footer .container {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}

.footer-cta-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-cta-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-cta-links a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1200px) {
  .brand {
    --logo-scale: 0.9;
  }

  .top-nav {
    font-size: 22px;
  }

  .btn-sm {
    font-size: 22px;
  }

  .about-logo {
    --about-logo-scale: 0.9;
  }

  .optimize-title,
  .get-touch-title,
  .new-features-title {
    --title-scale: 0.9;
  }
}

@media (max-width: 1167px) {
  .top-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    gap: 16px;
    display: grid;
    grid-template-columns: auto 44px;
    align-items: center;
  }

  .brand {
    justify-self: start;
    --logo-scale: 0.85;
  }

  .burger-toggle {
    display: inline-flex;
    justify-self: end;
  }
}

@media (max-width: 992px) {
  .security-grid,
  .feature-intro-grid,
  .download-options-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    --logo-scale: 0.85;
  }

  .mobile-menu-nav a {
    font-size: 24px;
  }

  .mobile-menu-actions .btn-sm {
    font-size: 20px;
  }

  .about-logo {
    --about-logo-scale: 0.85;
  }

  .optimize-title,
  .get-touch-title,
  .new-features-title {
    --title-scale: 0.85;
  }

  .showcase-left,
  .showcase-right {
    display: none;
  }

  .showcase-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .showcase-main {
    position: relative;
    left: auto;
    transform: none;
    width: min(843.666px, 88vw);
    height: auto;
    top: auto;
  }

  .showcase h2 {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    text-align: center;
    font-size: 76px !important;
  }

  .feature-row,
  .feature-row.reverse,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-text,
  .feature-row.reverse img {
    order: unset;
  }
}

@media (max-width: 768px) {
  .feature-intro {
    padding-top: 40px;
  }

  .feature-intro-copy h1,
  .download-hero-inner h1 {
    font-size: 40px;
  }

  .feature-intro-copy p {
    font-size: 20px;
  }

  .feature-intro-buttons {
    width: 100%;
    flex-direction: column;
  }

  .feature-cta-primary,
  .feature-cta-secondary,
  .download-button {
    width: 100%;
    font-size: 24px;
  }

  .feature-intro-subtext {
    font-size: 20px;
    text-align: center;
  }

  .feature-intro-panel,
  .download-options-shell,
  .security-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .feature-intro-card,
  .download-card,
  .security-card {
    min-height: 0;
    padding: 20px;
    border-radius: 20px;
  }

  .feature-intro-card h2,
  .download-card h3 {
    font-size: 28px;
  }

  .feature-intro-card p,
  .feature-intro-note,
  .download-hero-inner > p,
  .download-security,
  .download-security-note,
  .download-platform,
  .download-version,
  .security-card h3,
  .security-card p,
  .security-note p {
    font-size: 20px !important;
  }

  .security {
    padding-top: 32px;
  }

  .security-inner {
    gap: 24px;
  }

  .security-pill {
    gap: 14px;
    min-height: 74px;
    padding: 16px 22px;
  }

  .security-pill-icon {
    width: 32px;
    height: 40px;
  }

  .security-pill span {
    font-size: 32px;
  }

  .security-chip {
    margin-bottom: 10px;
    font-size: 24px;
    box-shadow: none;
  }

  .security-note {
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
  }

  .header-inner {
    width: 100%;
    padding-inline: 16px;
  }

  .brand {
    --logo-scale: 0.75;
  }

  .about-logo {
    --about-logo-scale: 0.75;
  }

  .optimize-title,
  .get-touch-title,
  .new-features-title {
    --title-scale: 0.75;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .btn-sm {
    height: 38px;
    padding-inline: 14px;
    font-size: 20px;
  }

  .hero h1,
  .section-head h2,
  .contact h2 {
    font-size: 40px;
  }

  .feature-badge {
    gap: 12px;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 24px;
  }

  .feature-badge img {
    width: 34px;
    height: 38px;
  }

  .new-feature-card {
    padding: 20px;
    border-radius: 20px;
  }

  .new-feature-copy h3 {
    font-size: 28px;
  }

  .new-feature-copy p,
  .role-summary,
  .role-list li {
    font-size: 20px;
  }

  .feature-title-row {
    gap: 16px;
  }

  .feature-title-icon {
    width: 24px;
    height: 24px;
  }

  .new-feature-media {
    padding: 16px;
  }

  .hero-copy,
  .section-head p,
  .about p,
  .contact p {
    font-size: 20px;
  }

  .hero-sub,
  .site-footer p {
    font-size: 8px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .mobile-menu-nav a {
    font-size: 20px;
  }

  .btn-lg {
    min-height: 48px;
    width: 100%;
    font-size: 24px;
  }

  .showcase h2 {
    font-size: 68px !important;
  }

  .feature-row {
    padding: 16px;
    border-radius: 20px;
  }

  .feature-text {
    padding: 8px;
  }

  .feature-text h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .feature-text p {
    font-size: 20px;
  }

  .feature-row img,
  .feature-row .reports-img {
    height: auto;
  }

  .brand-word {
    width: 124px;
  }

  .contact-pill {
    min-height: 72px;
  }

  .contact-pill span {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .start-free-btn,
  .feature-cta-primary,
  .download-button,
  .mobile-menu-actions .header-install-btn {
    display: none;
  }

  .feature-intro-copy h1,
  .download-hero-inner h1 {
    font-size: 32px;
  }

  .feature-intro-copy p,
  .feature-intro-subtext,
  .feature-intro-card p,
  .feature-intro-note,
  .download-hero-inner > p,
  .download-security,
  .download-security-note,
  .download-platform,
  .download-version {
    font-size: 16px !important;
  }

  .feature-intro-card h2,
  .download-card h3 {
    font-size: 20px;
  }

  .download-button {
    font-size: 18px;
    min-height: 48px;
    gap: 10px;
  }

  .security-pill span {
    font-size: 24px;
  }

  .security-chip {
    font-size: 20px;
  }

  .header-inner {
    width: 100%;
    padding-inline: 12px;
  }

  .brand {
    --logo-scale: 0.7;
  }

  .about-logo {
    --about-logo-scale: 0.7;
  }

  .optimize-title,
  .get-touch-title,
  .new-features-title {
    --title-scale: 0.7;
  }

  .mobile-menu-nav a {
    font-size: 18px;
  }

  .showcase h2 {
    font-size: 60px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 66px;
  }

  .header-inner {
    min-height: 66px;
    width: 100%;
    padding-inline: 12px;
  }

  .brand {
    --logo-scale: 0.555;
  }

  .brand-word {
    width: calc(149.682px * var(--logo-scale));
    height: calc(29.991px * var(--logo-scale));
  }

  .burger-toggle {
    width: 39.6px;
    height: 39.6px;
    gap: 5.4px;
  }

  .burger-toggle span {
    width: 23.4px;
  }

  .about-logo {
    --about-logo-scale: 0.65;
  }

  .optimize-title,
  .get-touch-title,
  .new-features-title {
    --title-scale: 0.65;
  }

  .mobile-menu-nav a {
    font-size: 16px;
  }

  .showcase h2 {
    font-size: 56px !important;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .security-pill {
    width: 100%;
    padding-inline: 18px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 56px !important;
  }

  .optimize-title {
    font-size: 56px !important;
  }

  .new-features-title {
    font-size: 56px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  p {
    font-size: 22px !important;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .showcase-left,
  .showcase-right {
    display: none;
  }

  .showcase-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .showcase-main {
    position: relative;
    left: auto;
    transform: none;
    width: min(843.666px, 88vw);
    height: auto;
    top: auto;
  }

  .showcase h2 {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    text-align: center;
    font-size: 64px !important;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 48px !important;
  }

  .optimize-title {
    font-size: 48px !important;
  }

  .new-features-title {
    font-size: 48px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  p {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px !important;
  }

  .optimize-title {
    font-size: 40px !important;
  }

  .new-features-title {
    font-size: 40px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  p {
    font-size: 18px !important;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px !important;
  }

  .optimize-title {
    font-size: 32px !important;
  }

  .new-features-title {
    font-size: 32px !important;
  }

  h2 {
    font-size: 18px !important;
  }

  p {
    font-size: 16px !important;
  }
}

@media (max-width: 307px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 16px);
  }

  .header-inner {
    padding-inline: 0;
    gap: 8px;
  }

  .brand {
    --logo-scale: 0.555;
  }

  .brand-word {
    width: calc(149.682px * var(--logo-scale));
    height: calc(29.991px * var(--logo-scale));
  }

  .hero h1,
  .hero-copy,
  .section-head h2,
  .showcase h2,
  .about p,
  .contact p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .showcase h2 {
    font-size: 42px !important;
    line-height: 1.05;
    white-space: normal;
  }

  .contact-pill {
    width: 100%;
    max-width: 100%;
    min-height: 60px;
    padding-inline: 10px;
  }

  .contact-pill span {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 348px) {
  .showcase {
    background: #0c8ce9;
  }

  .showcase-bg {
    display: none;
  }
}

/* Keep footer text size independent from global p !important rules */
.site-footer p {
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .site-footer p {
    font-size: 8px !important;
  }
}
