:root {
  --coral: #ff5548;
  --coral-dark: #eb3f34;
  --coral-soft: #ffebe8;
  --ink: #171918;
  --ink-soft: #252827;
  --paper: #ffffff;
  --cream: #f5f3ee;
  --cream-deep: #ece8df;
  --lavender: #e8e4ff;
  --green: #22a06b;
  --line: #deddd8;
  --muted: #6f7471;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 24px 70px rgba(28, 24, 20, 0.11);
  --shadow-card: 0 18px 50px rgba(28, 24, 20, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.announcement {
  position: relative;
  z-index: 60;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.announcement p {
  margin: 0;
  color: #d7d9d8;
}

.announcement p span {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.announcement a:hover {
  color: var(--coral);
}

.announcement a svg {
  width: 15px;
  transition: transform 180ms ease;
}

.announcement a:hover svg {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(23, 25, 24, 0.08);
  box-shadow: 0 10px 34px rgba(32, 29, 26, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 34px;
  height: auto;
  display: block;
  flex: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 70px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: #444846;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.text-link {
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--coral-dark);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.copy-button:focus-visible,
.connect-form button:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid rgba(255, 85, 72, 0.28);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg:last-child {
  transform: translateX(2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-large {
  min-height: 58px;
  padding: 0 24px;
}

.button-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(235, 63, 52, 0.2);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(235, 63, 52, 0.27);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: var(--coral);
}

.button-ghost {
  border-color: #d7d6d1;
  color: var(--ink);
  background: #fff;
}

.button-ghost:hover {
  border-color: var(--ink);
}

.button-white {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 45px rgba(100, 20, 12, 0.22);
}

.button-white:hover {
  background: #fff7f5;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 102px 0 82px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 78%, #fcfbf8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(23, 25, 24, 0.05), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  top: 70px;
  right: -260px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(255, 85, 72, 0.15), rgba(255, 85, 72, 0) 70%);
}

.hero-glow-two {
  bottom: -320px;
  left: 26%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 228, 255, 0.7), rgba(232, 228, 255, 0) 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 22px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--coral);
  border-radius: inherit;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

.hero h1,
.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.download-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  margin-top: 23px;
  font-size: clamp(58px, 6.15vw, 91px);
}

.hero h1 span {
  color: var(--coral);
}

.hero-lede {
  max-width: 580px;
  margin: 29px 0 0;
  color: #5f6461;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 24px;
  color: #6a706d;
  font-size: 12px;
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  stroke-width: 2.2;
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 570px;
}

.hero-campaign-image {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: -120px;
  width: 790px;
  max-width: none;
  height: auto;
  border-radius: 34px;
  object-fit: cover;
  filter: drop-shadow(0 28px 48px rgba(41, 34, 29, 0.1));
  user-select: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 85, 72, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 17%;
  left: 3%;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 2px 8px rgba(235, 63, 52, 0.32);
}

.orbit-one {
  top: -25px;
  right: -142px;
  width: 580px;
  height: 580px;
  animation: orbit-spin 28s linear infinite;
}

.orbit-two {
  top: 64px;
  right: -51px;
  width: 410px;
  height: 410px;
  border-color: rgba(23, 25, 24, 0.08);
  animation: orbit-spin 22s linear infinite reverse;
}

.app-window {
  display: none;
  position: absolute;
  top: 16px;
  right: -88px;
  width: 690px;
  height: 450px;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 24, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(33, 29, 25, 0.15);
  transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.window-bar {
  height: 43px;
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  border-bottom: 1px solid #ecece9;
  background: #fbfbfa;
}

.window-controls {
  display: flex;
  gap: 5px;
  padding-left: 14px;
}

.window-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d9d7;
}

.window-controls span:first-child {
  background: #ff8a81;
}

.window-address {
  min-width: 230px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 22px;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  color: #919693;
  background: white;
  font-size: 9px;
}

.window-address svg {
  width: 11px;
}

.window-avatar {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-right: 14px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 7px;
  font-weight: 700;
}

.app-body {
  height: calc(100% - 43px);
  display: flex;
  background: #f0f1ef;
}

.app-sidebar {
  position: relative;
  width: 48px;
  flex: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding-top: 14px;
  background: #202321;
}

.mini-brand {
  position: relative;
  width: 18px;
  height: 16px;
  margin-bottom: 14px;
}

.mini-brand span {
  position: absolute;
  width: 9px;
  height: 13px;
  border-radius: 2px;
  background: var(--coral);
  transform: skewX(-20deg);
}

.mini-brand span:first-child {
  left: 1px;
}

.mini-brand span:last-child {
  right: 1px;
  opacity: 0.55;
}

.app-sidebar i {
  position: relative;
  width: 15px;
  height: 13px;
  border: 1px solid #6e736f;
  border-radius: 3px;
}

.app-sidebar i:nth-of-type(2) {
  height: 15px;
  border-radius: 50%;
}

.app-sidebar i:nth-of-type(3)::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 7px;
  height: 1px;
  background: #747975;
  box-shadow: 0 3px 0 #747975;
}

.app-sidebar i.active {
  border-color: var(--coral);
}

.app-sidebar i.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 3px;
  height: 22px;
  border-radius: 0 3px 3px 0;
  background: var(--coral);
  transform: translateY(-50%);
}

.app-sidebar .sidebar-bottom {
  position: absolute;
  bottom: 16px;
  border-radius: 50%;
}

.remote-workspace {
  width: calc(100% - 48px);
  padding: 11px 12px 12px;
}

.session-toolbar {
  height: 35px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  color: #666b68;
  font-size: 8px;
}

.session-toolbar > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #282b29;
  font-weight: 700;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.12);
}

.session-toolbar button {
  padding: 5px 12px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--coral);
  font-size: 8px;
}

.remote-desktop {
  position: relative;
  height: calc(100% - 35px);
  overflow: hidden;
  border-radius: 9px;
  background: #f8fafb;
  box-shadow: inset 0 0 0 1px rgba(23, 25, 24, 0.05);
}

.desktop-topbar {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #e8e9e7;
  background: #fff;
}

.desktop-topbar > span {
  width: 39px;
  height: 6px;
  border-radius: 3px;
  background: var(--ink);
}

.desktop-topbar div {
  display: flex;
  gap: 9px;
}

.desktop-topbar i {
  width: 6px;
  height: 6px;
  border: 1px solid #c4c7c5;
  border-radius: 50%;
}

.desktop-content {
  padding: 25px 30px;
}

.desktop-heading {
  width: 130px;
  height: 13px;
  border-radius: 4px;
  background: #242725;
}

.desktop-subheading {
  width: 220px;
  height: 6px;
  margin-top: 9px;
  border-radius: 4px;
  background: #d9dcda;
}

.desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.desktop-grid span {
  height: 55px;
  border: 1px solid #e1e4e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(27, 30, 28, 0.03);
}

.desktop-grid span:first-child {
  background: var(--coral-soft);
}

.desktop-chart {
  height: 120px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #e1e4e2;
  border-radius: 8px;
  background:
    linear-gradient(#f1f2f1 1px, transparent 1px) 0 0 / 100% 30px,
    linear-gradient(90deg, #f1f2f1 1px, transparent 1px) 0 0 / 60px 100%,
    #fff;
}

.desktop-chart svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.chart-fill {
  fill: rgba(255, 85, 72, 0.08);
  stroke: none;
}

.chart-line {
  stroke: var(--coral);
}

.remote-cursor {
  position: absolute;
  top: 53%;
  left: 59%;
  color: var(--coral);
  animation: cursor-float 4.5s ease-in-out infinite;
}

.remote-cursor svg {
  width: 19px;
  height: 19px;
  fill: var(--coral);
  stroke: white;
  stroke-width: 1.2;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.remote-cursor span {
  position: absolute;
  top: 16px;
  left: 12px;
  padding: 3px 6px;
  border-radius: 5px;
  color: #fff;
  background: var(--coral);
  font-size: 7px;
  font-weight: 700;
}

.session-card {
  position: absolute;
  z-index: 4;
  bottom: 3px;
  left: -12px;
  width: 342px;
  padding: 20px;
  border: 1px solid rgba(23, 25, 24, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.session-card-head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.session-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  color: var(--coral);
  background: #fff;
  box-shadow: 0 4px 12px rgba(23, 25, 24, 0.08);
}

.session-icon svg {
  width: 20px;
}

.session-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.session-card-head div:nth-child(2) {
  min-width: 0;
}

.session-card-head span:not(.online-pill) {
  display: block;
  margin-bottom: 2px;
  color: #949895;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.session-card-head strong {
  display: block;
  font-size: 12px;
}

.online-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f7f1;
  font-size: 8px;
  font-weight: 700;
}

.session-card > label,
.connect-form label {
  display: block;
  margin-bottom: 7px;
  color: #7e8380;
  font-size: 9px;
  font-weight: 600;
}

.access-code-row {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 13px;
  border: 1px solid #dedfdd;
  border-radius: 10px;
  background: #fbfbfa;
}

.access-code-row input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #242725;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.copy-button {
  width: 33px;
  height: 33px;
  flex: none;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #666b68;
  background: #eceeec;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.copy-button:hover {
  color: white;
  background: var(--ink);
}

.copy-button svg {
  width: 15px;
}

.connect-form {
  margin-top: 15px;
}

.connect-row {
  height: 40px;
  display: flex;
  padding: 3px 3px 3px 11px;
  border: 1px solid #dedfdd;
  border-radius: 10px;
}

.connect-row:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 85, 72, 0.1);
}

.connect-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}

.connect-row input::placeholder {
  color: #a1a5a2;
}

.connect-row button {
  width: 34px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--coral);
  cursor: pointer;
}

.connect-row button:hover {
  background: var(--coral-dark);
}

.connect-row button svg {
  width: 15px;
}

.connect-status {
  min-height: 12px;
  margin: 5px 0 -7px;
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
}

.connect-status.error {
  color: var(--coral-dark);
}

.floating-message {
  position: absolute;
  z-index: 5;
  top: 73px;
  right: -51px;
  width: 217px;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(23, 25, 24, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(33, 29, 25, 0.13);
  animation: message-float 5s ease-in-out infinite;
}

.message-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: #6b5fce;
  font-size: 9px;
  font-weight: 700;
}

.floating-message strong,
.floating-message span {
  display: block;
}

.floating-message strong {
  font-size: 10px;
}

.floating-message span {
  margin-top: 2px;
  color: #8b908d;
  font-size: 8px;
}

.floating-message > svg {
  width: 19px;
  height: 19px;
  padding: 4px;
  border-radius: 50%;
  color: var(--green);
  background: #e9f7f1;
  stroke-width: 2.5;
}

.logo-strip {
  padding: 37px 0 45px;
  border-top: 1px solid #ecebe7;
  border-bottom: 1px solid #ecebe7;
  background: #fcfbf8;
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.logo-strip p {
  min-width: max-content;
  margin: 0;
  color: #8b8f8d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #686d6a;
}

.logo-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-symbol {
  width: 22px;
  height: 22px;
  flex: none;
  stroke-width: 1.65;
}

.section {
  padding: 124px 0;
}

.section-heading {
  margin-bottom: 62px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.download-copy h2 {
  margin-top: 17px;
  font-size: clamp(48px, 5.3vw, 74px);
}

.split-heading > p {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.feature-card {
  --feature-surface: var(--cream);
  position: relative;
  min-height: 640px;
  display: grid;
  overflow: hidden;
  grid-template-rows: 52px auto 1fr;
  padding: 35px 35px 0;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(28, 24, 20, 0.08);
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.feature-card:hover {
  box-shadow: 0 28px 66px rgba(28, 24, 20, 0.12);
  transform: translateY(-4px);
}

.feature-card h3,
.security-grid h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.feature-card > .feature-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin-top: 31px;
}

.feature-card p,
.security-grid p {
  margin: 10px 0 0;
  color: rgba(23, 25, 24, 0.63);
  font-size: 15px;
  line-height: 1.6;
}

.feature-card-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 25, 24, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
}

.feature-card-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.6;
}

.feature-number {
  position: absolute;
  top: 40px;
  right: 38px;
  color: rgba(23, 25, 24, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.feature-card-coral {
  --feature-surface: var(--coral);
  background: var(--coral);
}

.feature-card-coral p {
  color: rgba(23, 25, 24, 0.65);
}

.feature-card-cream {
  --feature-surface: #f7f5f0;
  background: #f7f5f0;
}

.feature-card-dark {
  --feature-surface: var(--ink);
  color: white;
  background: var(--ink);
  box-shadow: 0 22px 55px rgba(23, 25, 24, 0.15);
}

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.feature-card-dark .feature-number {
  color: rgba(255, 255, 255, 0.36);
}

.feature-card-dark .feature-card-icon {
  border-color: rgba(255, 255, 255, 0.17);
}

.feature-card-lavender {
  --feature-surface: var(--lavender);
  background: var(--lavender);
}

.feature-art {
  position: relative;
  min-height: 0;
  width: calc(100% + 70px);
  aspect-ratio: 3 / 2;
  align-self: end;
  overflow: hidden;
  margin: 28px -35px 0;
  isolation: isolate;
}

.feature-art picture,
.feature-art img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-art img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to bottom, var(--feature-surface), transparent 12%);
  pointer-events: none;
}

.feature-card:hover .feature-art img {
  transform: scale(1.025);
}

.mini-session-ui {
  position: relative;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -35px -35px;
  border-top: 1px solid rgba(23, 25, 24, 0.09);
  background: rgba(255, 255, 255, 0.12);
}

.mini-session-user {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  color: white;
  background: #6b5fce;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(88, 21, 14, 0.12);
}

.mini-session-user i {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  background: #b7f5dc;
}

.mini-session-user-dark {
  color: white;
  background: var(--ink);
}

.mini-session-line {
  width: 93px;
  height: 2px;
  background: rgba(23, 25, 24, 0.24);
}

.mini-session-line::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: white;
  animation: session-progress 2.5s ease-in-out infinite alternate;
}

.device-list {
  display: grid;
  gap: 7px;
  margin: 0 -35px -35px;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(23, 25, 24, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.device-list span {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
}

.device-list b {
  color: #828783;
  font-size: 8px;
  font-weight: 600;
}

.device-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.device-dot.online {
  background: var(--green);
}

.device-dot.away {
  background: #e6a334;
}

.team-stack {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.team-stack > span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: #6b5fce;
  font-size: 10px;
  font-weight: 700;
}

.team-stack > span:first-child {
  margin-left: 0;
  background: var(--coral);
}

.team-stack > span:nth-child(2) {
  background: #3377be;
}

.team-stack > span:nth-child(3) {
  background: #d18c3f;
}

.team-stack .team-more {
  color: var(--ink);
  background: white;
}

.team-note {
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.permission-ui {
  display: grid;
  gap: 8px;
  margin: 0 -35px -35px;
  padding: 18px 25px 23px;
  background: rgba(255, 255, 255, 0.25);
}

.permission-ui span {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 600;
}

.permission-ui i {
  width: 27px;
  height: 16px;
  padding: 2px;
  border-radius: 999px;
  background: var(--coral);
}

.permission-ui i::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-left: 11px;
  border-radius: 50%;
  background: white;
}

.permission-ui span:last-child i {
  background: #b4afa9;
}

.permission-ui span:last-child i::after {
  margin-left: 0;
}

.permission-ui b {
  color: #7e8380;
  font-size: 8px;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: #fff;
  background: var(--ink);
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.workflow-orb {
  position: absolute;
  top: 8%;
  right: -280px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 72, 0.24), transparent 68%);
}

.workflow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 82px;
}

.section-kicker-light {
  color: #ff8278;
}

.workflow-copy h2 {
  max-width: 560px;
}

.workflow-copy > p {
  max-width: 500px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
}

.workflow-steps {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 17px;
  padding: 0 0 30px;
  color: rgba(255, 255, 255, 0.42);
}

.workflow-steps li::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 3px;
  left: 17px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.workflow-steps li:last-child::before {
  display: none;
}

.workflow-steps li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.workflow-steps li.active {
  color: white;
}

.workflow-steps li.active > span {
  border-color: var(--coral);
  background: var(--coral);
}

.workflow-steps strong {
  display: block;
  padding-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.workflow-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.5;
}

.workflow-visual {
  position: relative;
  min-width: 0;
  height: 570px;
  display: flex;
  align-items: center;
}

.workflow-browser {
  width: 770px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #f6f7f6;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.workflow-browser-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #e4e5e3;
  background: #fff;
}

.workflow-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dadbd9;
}

.workflow-browser-bar > span:first-child {
  background: #ff8a81;
}

.workflow-browser-bar i {
  width: 170px;
  margin-left: 35px;
  padding: 6px 12px;
  border: 1px solid #e7e8e6;
  border-radius: 7px;
  color: #9a9d9b;
  background: #fafafa;
  font-size: 7px;
  font-style: normal;
  text-align: center;
}

.workflow-screen {
  height: 430px;
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 9px;
  padding: 9px;
}

.workflow-panel,
.workflow-chat {
  overflow: hidden;
  border: 1px solid #e1e2e0;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
}

.panel-head {
  height: 49px;
  display: grid;
  grid-template-columns: 30px 1fr 7px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid #edeeec;
}

.panel-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: #6b5fce;
  font-size: 7px;
  font-weight: 700;
}

.panel-head strong,
.panel-head span {
  display: block;
}

.panel-head strong {
  font-size: 8px;
}

.panel-head span {
  margin-top: 2px;
  color: #949894;
  font-size: 6px;
}

.panel-head > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.panel-preview {
  height: 315px;
  margin: 8px;
  overflow: hidden;
  border: 1px solid #e7e8e6;
  border-radius: 7px;
  background: #f4f5f4;
}

.preview-nav {
  height: 24px;
  border-bottom: 1px solid #e1e3e1;
  background: #fff;
}

.preview-body {
  padding: 28px 31px;
}

.preview-body > span {
  width: 42%;
  height: 8px;
  display: block;
  border-radius: 3px;
  background: #292c2a;
}

.preview-body > span:nth-child(2) {
  width: 61%;
  height: 4px;
  margin-top: 7px;
  background: #d3d6d3;
}

.preview-body > div {
  height: 178px;
  margin-top: 22px;
  border-radius: 8px;
  background:
    linear-gradient(#e5e8e5 1px, transparent 1px) 0 0 / 100% 35px,
    linear-gradient(90deg, #e5e8e5 1px, transparent 1px) 0 0 / 20% 100%,
    linear-gradient(135deg, transparent 25%, rgba(255, 85, 72, 0.09) 25% 55%, transparent 55%),
    #fff;
}

.panel-controls {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-top: 1px solid #edeeec;
}

.panel-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e4e1;
  border-radius: 7px;
  color: #5d625f;
  background: white;
}

.panel-controls button svg {
  width: 13px;
}

.panel-controls .control-end {
  margin-left: 7px;
  border-color: var(--coral);
  color: white;
  background: var(--coral);
}

.workflow-chat {
  display: flex;
  flex-direction: column;
}

.chat-head {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #edeeec;
  font-size: 8px;
}

.chat-head span {
  color: #a0a4a1;
  letter-spacing: 0.1em;
}

.chat-message {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: end;
  gap: 6px;
  margin: 18px 10px 0;
}

.chat-message > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: #6b5fce;
  font-size: 6px;
  font-weight: 700;
}

.chat-message p {
  margin: 0;
  padding: 9px;
  border-radius: 9px 9px 9px 2px;
  color: #5f6461;
  background: #f0f1ef;
  font-size: 7px;
  line-height: 1.45;
}

.chat-message-own {
  grid-template-columns: 1fr 22px;
  margin-top: 12px;
}

.chat-message-own p {
  color: white;
  background: var(--coral);
  border-radius: 9px 9px 2px 9px;
}

.chat-message-own > span {
  background: var(--ink);
}

.chat-typing {
  width: 38px;
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 12px 0 0 38px;
  padding: 8px 5px;
  border-radius: 8px;
  background: #f0f1ef;
}

.chat-typing i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9da19e;
  animation: typing 1.2s infinite ease-in-out;
}

.chat-typing i:nth-child(2) {
  animation-delay: 150ms;
}

.chat-typing i:nth-child(3) {
  animation-delay: 300ms;
}

.chat-input {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto 9px 9px;
  padding: 0 9px;
  border: 1px solid #e2e4e1;
  border-radius: 8px;
  color: #a4a8a5;
  font-size: 7px;
}

.chat-input span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: white;
  background: var(--ink);
}

.resolved-badge {
  position: absolute;
  right: -25px;
  bottom: 23px;
  min-width: 177px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: var(--ink);
  background: #d6fae9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.resolved-badge > svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  stroke-width: 2.5;
}

.resolved-badge strong,
.resolved-badge span {
  display: block;
}

.resolved-badge strong {
  font-size: 11px;
}

.resolved-badge span {
  margin-top: 2px;
  color: #66706b;
  font-size: 8px;
}

.metrics-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-row > div {
  padding: 37px 25px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-row > div:first-child {
  padding-left: 0;
}

.metrics-row > div:last-child {
  border: 0;
}

.metrics-row strong,
.metrics-row span {
  display: block;
}

.metrics-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.metrics-row span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 600;
}

.security-section {
  background: #f7f5f0;
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading p {
  max-width: 500px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, 336px);
  gap: 18px;
}

.security-main-card,
.security-small-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: var(--radius-lg);
  background: white;
}

.security-main-card {
  grid-row: 1 / 3;
}

.security-copy {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 49px;
}

.card-label {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.security-copy h3 {
  margin-top: 21px;
  font-size: 39px;
}

.security-copy p {
  margin-top: 18px;
}

.security-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
}

.security-copy a svg {
  width: 17px;
  transition: transform 180ms ease;
}

.security-copy a:hover {
  color: var(--coral-dark);
}

.security-copy a:hover svg {
  transform: translateX(3px);
}

.shield-visual {
  position: absolute;
  right: -105px;
  bottom: -27px;
  width: 490px;
  height: 490px;
}

.shield-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 85, 72, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.shield-ring-one {
  width: 410px;
  height: 410px;
}

.shield-ring-two {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 85, 72, 0.09), transparent 70%);
}

.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 85, 72, 0.22);
  border-radius: 36px;
  color: white;
  background: var(--coral);
  box-shadow:
    0 0 0 17px rgba(255, 85, 72, 0.08),
    0 28px 50px rgba(235, 63, 52, 0.25);
  transform: translate(-50%, -50%) rotate(4deg);
}

.shield-core svg {
  width: 55px;
  height: 62px;
  stroke-width: 2;
  transform: rotate(-4deg);
}

.security-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  font-size: 9px;
  font-weight: 700;
}

.security-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.chip-sso {
  top: 73px;
  left: 88px;
}

.chip-encryption {
  top: 204px;
  right: 38px;
}

.chip-audit {
  bottom: 79px;
  left: 51px;
}

.security-small-card {
  padding: 34px;
}

.small-card-copy {
  position: relative;
  z-index: 3;
  max-width: 270px;
}

.small-card-copy h3 {
  margin-top: 13px;
  font-size: 26px;
}

.small-card-copy p {
  margin-top: 8px;
  font-size: 12px;
}

.mobile-card {
  background: var(--lavender);
}

.phone-stack {
  position: absolute;
  right: 18px;
  bottom: -77px;
  width: 225px;
  height: 260px;
}

.phone {
  position: absolute;
  width: 115px;
  height: 225px;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 20px 35px rgba(47, 42, 81, 0.18);
}

.phone > span {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-back {
  top: 28px;
  left: 12px;
  transform: rotate(-10deg);
}

.phone-back > div {
  height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 85, 72, 0.2), transparent 45%),
    #f4f2ee;
}

.phone-front {
  top: 4px;
  right: 9px;
  z-index: 2;
  transform: rotate(5deg);
}

.phone-screen {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 46px;
  background:
    radial-gradient(circle at 80% 17%, rgba(255, 85, 72, 0.22), transparent 25%),
    #fff;
}

.phone-screen i {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.phone-screen b {
  margin-top: 39px;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.07em;
}

.phone-screen small {
  margin-top: 5px;
  color: #969a97;
  font-size: 6px;
}

.analytics-card {
  background: #dff5eb;
}

.analytics-ui {
  position: absolute;
  right: -22px;
  bottom: -20px;
  width: 290px;
  height: 175px;
  padding: 18px;
  border: 1px solid rgba(23, 25, 24, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
}

.analytics-summary span,
.analytics-summary strong,
.analytics-summary i {
  display: block;
}

.analytics-summary span {
  color: #8a8f8b;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.analytics-summary strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.analytics-summary i {
  margin-top: 1px;
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}

.bars {
  height: 63px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 15px;
  border-bottom: 1px solid #dfe4e1;
}

.bars span {
  width: 17px;
  height: var(--bar);
  border-radius: 4px 4px 0 0;
  background: #b7dfcd;
}

.bars span:nth-last-child(-n + 2) {
  background: var(--coral);
}

.testimonial-section {
  padding: 100px 0;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 35px;
}

.quote-mark {
  align-self: start;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 0.9;
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid blockquote > p {
  max-width: 780px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.testimonial-grid blockquote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background:
    linear-gradient(145deg, #8b7ee2, #5a4db0);
  font-size: 11px;
  font-weight: 700;
}

.testimonial-grid footer strong,
.testimonial-grid footer span {
  display: block;
}

.testimonial-grid footer strong {
  font-size: 12px;
}

.testimonial-grid footer span {
  margin-top: 3px;
  color: #848986;
  font-size: 10px;
}

.testimonial-score {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 24px;
  border-left: 1px solid #e1e0dc;
}

.testimonial-score > span {
  font-family: "Manrope", sans-serif;
  font-size: 43px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.testimonial-score strong,
.testimonial-score small {
  display: block;
}

.testimonial-score strong {
  color: var(--coral);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.testimonial-score small {
  margin-top: 6px;
  color: #888d89;
  font-size: 8px;
}

.faq-section {
  border-top: 1px solid #ecebe7;
  background: #fcfbf8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(45px, 4.5vw, 64px);
}

.faq-intro > p {
  margin: 28px 0 5px;
  color: #838884;
  font-size: 13px;
}

.faq-intro > a {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-list {
  border-top: 1px solid #dcdcd7;
}

.faq-item {
  border-bottom: 1px solid #dcdcd7;
}

.faq-item > button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 24px;
  padding: 27px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item > button span {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.faq-item > button i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #d6d6d1;
  border-radius: 50%;
}

.faq-item > button i::before,
.faq-item > button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open > button i {
  border-color: var(--coral);
  background: var(--coral);
}

.faq-item.open > button i::before,
.faq-item.open > button i::after {
  background: white;
}

.faq-item.open > button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #737875;
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 55px 27px 0;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.13), transparent 31%),
    linear-gradient(135deg, #ff5548 0%, #f14a3f 58%, #df392f 100%);
}

.download-section::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 34%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.download-shape {
  position: absolute;
  width: 190px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 80px;
  transform: rotate(35deg);
}

.download-shape-one {
  top: -130px;
  left: -30px;
}

.download-shape-two {
  right: 4%;
  bottom: -190px;
}

.download-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 6vw, 82px);
}

.download-copy .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.download-copy {
  padding-top: 17px;
}

.download-copy h2 {
  margin-top: 12px;
  font-size: clamp(50px, 5.5vw, 78px);
}

.download-copy p {
  max-width: 460px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.download-trust-note {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(121, 20, 13, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.download-trust-note svg {
  width: 18px;
  height: 18px;
  flex: none;
  stroke-width: 2;
}

.download-chooser {
  min-width: 0;
  display: grid;
  gap: 13px;
}

.download-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(104, 23, 16, 0.13);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.download-product.is-open {
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 26px 65px rgba(104, 23, 16, 0.2);
  transform: translateY(-2px);
}

.download-product-heading {
  margin: 0;
}

.download-product-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.download-product-toggle:hover {
  background: #fffaf9;
}

.download-product-toggle:focus-visible,
.architecture-option:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(255, 85, 72, 0.35);
  outline-offset: -3px;
}

.download-product-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.download-product-mark svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.rustdesk-mark {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(23, 25, 24, 0.16);
}

.rustdesk-mark svg {
  color: #ff7369;
}

.anydesk-mark {
  color: white;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(235, 63, 52, 0.2);
}

.anydesk-mark svg {
  stroke-width: 2.3;
}

.download-product-title {
  min-width: 0;
  display: grid;
}

.download-product-title > small {
  color: #8a8f8b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.download-product-title > strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.download-selection-status {
  overflow: hidden;
  margin-top: 2px;
  color: #747976;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-product.has-selection .download-selection-status {
  color: var(--green);
}

.download-toggle-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #deded9;
  border-radius: 50%;
  color: #5f6461;
  background: #fff;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 220ms ease;
}

.download-toggle-icon svg {
  width: 17px;
  height: 17px;
}

.download-product.is-open .download-toggle-icon {
  border-color: var(--coral);
  color: white;
  background: var(--coral);
  transform: rotate(180deg);
}

.download-product-panel {
  padding: 0 16px 17px;
  border-top: 1px solid #ebe9e4;
}

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

.architecture-groups {
  display: grid;
  gap: 9px;
  padding-top: 13px;
}

.architecture-group {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid #ebe9e4;
  border-radius: 14px;
  background: #f8f6f1;
}

.architecture-group-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-badge {
  width: 34px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid #dcdad4;
  border-radius: 7px;
  color: #626865;
  background: white;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.architecture-group h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.architecture-options {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.architecture-options-single {
  grid-template-columns: 1fr;
}

.architecture-option {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid #dfddd7;
  border-radius: 10px;
  color: #4c514e;
  background: white;
  transition:
    color 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.architecture-option:hover {
  border-color: rgba(255, 85, 72, 0.55);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(53, 37, 32, 0.07);
  transform: translateY(-1px);
}

.architecture-option.selected {
  border-color: var(--coral);
  color: var(--ink);
  background: var(--coral-soft);
  box-shadow: 0 0 0 2px rgba(255, 85, 72, 0.09);
}

.architecture-option > span {
  min-width: 0;
  display: grid;
}

.architecture-option strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.architecture-option small {
  overflow: hidden;
  margin-top: 2px;
  color: #626865;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.architecture-option > svg {
  width: 15px;
  height: 15px;
  flex: none;
  margin-left: auto;
  color: #a0a4a1;
  transition: color 170ms ease;
}

.architecture-option:hover > svg,
.architecture-option.selected > svg {
  color: var(--coral-dark);
}

.download-source-note {
  margin: 12px 4px 0;
  color: #858a87;
  font-size: 10px;
  line-height: 1.5;
}

.download-source-note a {
  color: #5d625f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.download-source-note a:hover {
  color: var(--coral-dark);
}

.site-footer {
  padding: 80px 0 27px;
  color: white;
  background: #131514;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 100px;
  padding-bottom: 68px;
}

.brand-light {
  color: white;
}

.footer-brand-column > p {
  max-width: 220px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.footer-status {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
  font-size: 9px;
}

.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #36c184;
  box-shadow: 0 0 0 3px rgba(54, 193, 132, 0.11);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 6px;
  font-size: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-bottom {
  min-height: 53px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div:nth-of-type(1) {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: white;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
}

.social-links a:hover {
  border-color: var(--coral);
  color: white;
  background: var(--coral);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  stroke-width: 2.5;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.4;
    transform: scale(0.65);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cursor-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(34px, -17px);
  }
  70% {
    transform: translate(15px, 24px);
  }
}

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

@keyframes session-progress {
  from {
    transform: scaleX(0.25);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes typing {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 30px;
  }

  .app-window {
    right: -156px;
  }

  .hero-campaign-image {
    right: -180px;
  }

  .floating-message {
    right: -19px;
  }

  .session-card {
    left: 3px;
  }

  .desktop-nav {
    gap: 22px;
    margin-left: 30px;
  }

  .security-copy {
    width: 59%;
    padding: 42px;
  }

  .shield-visual {
    right: -152px;
  }

  .phone-stack,
  .analytics-ui {
    opacity: 0.88;
  }
}

@media (max-width: 1040px) {
  .container {
    width: min(100% - 40px, 940px);
  }

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

  .menu-toggle {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid #deded9;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 76px;
    right: 0;
    left: 0;
    height: calc(100dvh - 76px);
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    padding: 27px 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a {
    padding: 17px 2px;
    border-bottom: 1px solid #e8e7e3;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 650;
    letter-spacing: -0.035em;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(67px, 9.1vw, 86px);
  }

  .hero-lede {
    max-width: 650px;
  }

  .hero-visual {
    width: min(820px, 100%);
    height: 610px;
    margin: 5px auto 0;
  }

  .hero-campaign-image {
    right: -18px;
    width: 850px;
  }

  .app-window {
    right: -37px;
    width: 760px;
  }

  .floating-message {
    right: -5px;
  }

  .session-card {
    left: 8px;
  }

  .logo-strip .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .logo-row {
    flex-wrap: wrap;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .workflow-copy {
    max-width: 740px;
  }

  .workflow-visual {
    height: auto;
  }

  .workflow-browser {
    width: 100%;
  }

  .resolved-badge {
    right: 20px;
  }

  .security-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 570px 330px 330px;
  }

  .security-main-card {
    grid-row: auto;
  }

  .shield-visual {
    right: -20px;
  }

  .security-copy {
    width: 52%;
    padding: 50px;
  }

  .security-small-card {
    padding: 40px;
  }

  .small-card-copy {
    max-width: 380px;
  }

  .phone-stack {
    right: 75px;
  }

  .analytics-ui {
    right: 50px;
    width: 330px;
  }

  .testimonial-grid {
    grid-template-columns: 80px 1fr;
  }

  .testimonial-score {
    grid-column: 2;
    width: max-content;
    margin-top: 15px;
    padding-left: 0;
    border-left: 0;
  }

  .faq-grid {
    gap: 60px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .download-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .announcement-inner {
    min-height: 36px;
    justify-content: space-between;
    gap: 10px;
  }

  .announcement p {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .announcement a {
    min-width: max-content;
    font-size: 10px;
  }

  .announcement p span,
  .announcement a svg {
    display: none;
  }

  .site-header {
    height: 68px;
  }

  .mobile-menu {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 27px;
    height: auto;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 55px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(51px, 13vw, 72px);
    letter-spacing: -0.07em;
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 14px;
  }

  .hero-visual {
    height: 505px;
    margin-top: 12px;
  }

  .hero-campaign-image {
    top: 18px;
    right: -30%;
    width: 135%;
    border-radius: 24px;
  }

  .app-window {
    top: 15px;
    right: -29%;
    width: 130%;
    height: 347px;
    border-radius: 17px;
  }

  .window-bar {
    height: 34px;
    grid-template-columns: 54px 1fr 54px;
  }

  .window-address {
    min-width: 180px;
    padding: 5px 13px;
    font-size: 7px;
  }

  .app-body {
    height: calc(100% - 34px);
  }

  .desktop-content {
    padding: 18px 20px;
  }

  .desktop-grid span {
    height: 38px;
  }

  .desktop-chart {
    height: 90px;
  }

  .session-card {
    bottom: 0;
    left: 0;
    width: min(342px, 88vw);
  }

  .floating-message {
    top: 57px;
    right: -19px;
    transform: scale(0.84);
    transform-origin: right top;
    animation: none;
  }

  .orbit-one {
    right: -240px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .logo-row > span:last-child {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .faq-intro h2,
  .download-copy h2 {
    font-size: clamp(44px, 12vw, 60px);
  }

  .split-heading > p {
    font-size: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 27px 27px 0;
    border-radius: 27px;
  }

  .feature-card > .feature-copy {
    margin-top: 25px;
  }

  .feature-card h3 {
    font-size: 25px;
  }

  .feature-number {
    top: 33px;
    right: 29px;
  }

  .mini-session-ui,
  .device-list,
  .permission-ui {
    margin-right: -27px;
    margin-bottom: -27px;
    margin-left: -27px;
  }

  .feature-art {
    width: calc(100% + 54px);
    margin: 24px -27px 0;
  }

  .workflow-section {
    padding-bottom: 0;
  }

  .workflow-screen {
    height: 355px;
    grid-template-columns: 1fr 150px;
  }

  .panel-preview {
    height: 240px;
  }

  .preview-body > div {
    height: 126px;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-row > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metrics-row > div:nth-child(2) {
    border-right: 0;
  }

  .metrics-row > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metrics-row > div:nth-child(3) {
    padding-left: 0;
  }

  .security-grid {
    grid-template-rows: 620px 370px 370px;
  }

  .security-copy {
    width: 100%;
    padding: 34px;
  }

  .security-copy h3 {
    font-size: 32px;
  }

  .shield-visual {
    right: 50%;
    bottom: -137px;
    transform: translateX(50%) scale(0.85);
  }

  .security-small-card {
    padding: 30px;
  }

  .small-card-copy {
    max-width: 270px;
  }

  .phone-stack {
    right: 25px;
  }

  .analytics-ui {
    right: -18px;
    width: 310px;
  }

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-mark {
    height: 70px;
  }

  .testimonial-score {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .download-section {
    padding: 82px 0;
  }

  .download-chooser {
    width: 100%;
  }

  .architecture-group {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 9px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .announcement a {
    display: none;
  }

  .announcement-inner {
    justify-content: center;
  }

  .hero {
    padding-top: 52px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(47px, 14.8vw, 64px);
  }

  .hero-lede {
    margin-top: 22px;
  }

  .button-large {
    min-height: 55px;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    height: 470px;
  }

  .hero-campaign-image {
    right: -47%;
    width: 165%;
  }

  .app-window {
    right: -47%;
    width: 157%;
  }

  .floating-message {
    display: none;
  }

  .session-card {
    width: 100%;
  }

  .session-card-head {
    grid-template-columns: 38px 1fr;
  }

  .online-pill {
    display: none;
  }

  .logo-strip {
    padding: 32px 0;
  }

  .logo-row > span {
    font-size: 14px;
  }

  .section {
    padding: 76px 0;
  }

  .feature-card {
    min-height: 0;
  }

  .workflow-browser {
    width: 590px;
    max-width: none;
    transform: scale(0.62);
    transform-origin: top left;
  }

  .workflow-visual {
    height: 310px;
    overflow: visible;
  }

  .resolved-badge {
    right: -3px;
    bottom: 7px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .metrics-row {
    margin-top: 20px;
  }

  .metrics-row > div {
    padding: 27px 14px;
  }

  .metrics-row strong {
    font-size: 24px;
  }

  .security-grid {
    grid-template-rows: 585px 380px 370px;
  }

  .shield-visual {
    bottom: -155px;
    transform: translateX(50%) scale(0.72);
  }

  .phone-stack {
    right: -7px;
    transform: scale(0.9);
    transform-origin: right bottom;
  }

  .analytics-ui {
    right: -53px;
    transform: rotate(-2deg) scale(0.9);
    transform-origin: right bottom;
  }

  .testimonial-grid blockquote > p {
    font-size: 28px;
  }

  .testimonial-grid blockquote footer {
    align-items: flex-start;
  }

  .testimonial-grid footer span {
    max-width: 220px;
    line-height: 1.45;
  }

  .faq-item > button span {
    font-size: 16px;
  }

  .download-section {
    padding: 70px 0;
  }

  .download-trust-note {
    width: auto;
    max-width: max-content;
  }

  .download-product {
    border-radius: 18px;
  }

  .download-product-toggle {
    grid-template-columns: 47px minmax(0, 1fr) 34px;
    gap: 11px;
    padding: 13px;
  }

  .download-product-mark {
    width: 47px;
    height: 47px;
    border-radius: 13px;
  }

  .download-product-mark svg {
    width: 30px;
    height: 30px;
  }

  .download-product-title > strong {
    font-size: 20px;
  }

  .download-product-title > small {
    font-size: 8px;
  }

  .download-product-panel {
    padding-right: 11px;
    padding-bottom: 13px;
    padding-left: 11px;
  }

  .architecture-options,
  .architecture-options-single {
    grid-template-columns: 1fr;
  }

  .architecture-option strong,
  .architecture-option small {
    white-space: normal;
  }

  .site-footer {
    padding-top: 66px;
  }

  .footer-links {
    gap: 38px 22px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

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

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