:root {
  --bg: #06101b;
  --bg-soft: #091724;
  --panel: #0c1c2b;
  --panel-2: #102334;
  --line: rgba(154, 204, 220, 0.14);
  --text: #f6fbff;
  --muted: #9fb2c2;
  --accent: #45d6d0;
  --accent-2: #63a7ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}
.section-pad {
  padding: 112px 0;
}
.section-pad-sm {
  padding: 72px 0;
}
.site-shell {
  position: relative;
}
.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  background: rgba(6, 16, 27, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(154, 204, 220, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  color: #03202a;
  background: linear-gradient(135deg, var(--accent), #9af4ed);
}
.brand-copy {
  display: grid;
  line-height: 1.15;
}
.brand-copy strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.97rem;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #bed0db;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.25s;
}
.main-nav a:hover {
  color: #fff;
}
.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(69, 214, 208, 0.45);
  border-radius: 999px;
  color: #dff !important;
  background: rgba(69, 214, 208, 0.07);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px;
  border-radius: 2px;
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 54px;
  align-items: center;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(116, 191, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 191, 214, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-glow-one {
  width: 460px;
  height: 460px;
  background: #2e9fd0;
  right: 5%;
  top: 8%;
}
.hero-glow-two {
  width: 320px;
  height: 320px;
  background: #16d1ad;
  left: 8%;
  bottom: 0;
}
.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #6fe7df;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.69rem;
  font-weight: 800;
  margin: 0 0 18px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, Arial, sans-serif;
  margin-top: 0;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3.3rem, 7vw, 6rem);
  letter-spacing: -0.075em;
  margin-bottom: 22px;
  max-width: 720px;
}
h1 .hero-accent {
  display: inline-block;
  padding-right: 0.28em;
  margin-right: 0.04em;
  overflow: visible;
  letter-spacing: -0.055em;
  background: linear-gradient(120deg, #fff 5%, #70e5df 55%, #71abff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}
h3 {
  letter-spacing: -0.04em;
}
.hero-text,
.section-intro > p:last-child,
.section-top > p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
}
.hero-text {
  font-size: 1.14rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.89rem;
  font-weight: 800;
  transition: 0.25s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  color: #04161d;
  background: linear-gradient(135deg, #63ede4, #61b0ff);
  box-shadow: 0 12px 32px rgba(52, 179, 207, 0.2);
}
.button-secondary {
  border-color: rgba(161, 214, 228, 0.24);
  color: #e9fbff;
  background: rgba(255, 255, 255, 0.035);
}
.hero-visual {
  position: relative;
  min-height: 530px;
}
.browser-frame {
  position: absolute;
  width: 94%;
  right: 0;
  top: 30px;
  background: #0f2333;
  border: 1px solid rgba(178, 229, 239, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.browser-bar,
.demo-browser-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #0a1824;
  border-bottom: 1px solid var(--line);
}
.traffic {
  display: flex;
  gap: 6px;
}
.traffic i,
.demo-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41606d;
}
.browser-url {
  margin-left: auto;
  margin-right: auto;
  color: #73909f;
  font-size: 0.66rem;
  background: #102a39;
  padding: 5px 34px;
  border-radius: 20px;
}
.browser-menu {
  color: #678794;
  font-size: 0.75rem;
}
.browser-content {
  padding: 22px;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-logo,
.phone-brand {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.mock-logo span,
.phone-brand span {
  color: var(--accent);
}
.mock-links {
  display: flex;
  gap: 8px;
}
.mock-links b {
  width: 24px;
  height: 3px;
  background: #6e93a3;
  border-radius: 9px;
}
.mock-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  padding: 50px 0 26px;
}
.mock-copy em {
  font-style: normal;
  color: #62dbd6;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.mock-copy h3 {
  font-size: 1.65rem;
  margin: 10px 0 10px;
}
.mock-copy p {
  color: #8aa4b2;
  font-size: 0.65rem;
  max-width: 210px;
}
.mock-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.mock-buttons span {
  width: 58px;
  height: 18px;
  border-radius: 999px;
  background: #55d7d1;
}
.mock-buttons span + span {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.mock-art {
  position: relative;
  min-height: 170px;
}
.mock-card {
  position: absolute;
  border-radius: 17px;
  background: linear-gradient(135deg, #21556a, #163447);
  border: 1px solid rgba(140, 236, 230, 0.18);
}
.card-one {
  width: 146px;
  height: 168px;
  right: 18px;
  top: -6px;
}
.card-two {
  width: 110px;
  height: 104px;
  left: 0;
  bottom: -7px;
  background: linear-gradient(135deg, #17616a, #0e2d3d);
}
.card-three {
  width: 74px;
  height: 74px;
  right: 0;
  bottom: -16px;
  background: linear-gradient(135deg, #7dced0, #2e7185);
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.mock-stats div {
  display: grid;
  gap: 2px;
}
.mock-stats b {
  color: #6ce5df;
  font-size: 0.7rem;
}
.mock-stats span {
  color: #7998a6;
  font-size: 0.55rem;
}
.phone-frame {
  position: absolute;
  width: 154px;
  right: -28px;
  bottom: 0;
  background: #0a1c28;
  border: 6px solid #1a3443;
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  padding: 10px 9px 14px;
}
.phone-notch {
  width: 54px;
  height: 8px;
  border-radius: 20px;
  background: #1a3443;
  margin: -6px auto 11px;
}
.phone-content {
  padding: 6px;
}
.phone-image {
  height: 98px;
  border-radius: 12px;
  margin-top: 14px;
  background: linear-gradient(145deg, #266d78, #14364a);
}
.phone-content h4 {
  font-size: 0.86rem;
  margin: 13px 0 5px;
}
.phone-content p {
  font-size: 0.57rem;
  color: #91a9b5;
  margin: 0;
}
.phone-button {
  margin-top: 12px;
  border-radius: 999px;
  background: #5fddd8;
  color: #05232d;
  text-align: center;
  padding: 7px 6px;
  font-size: 0.6rem;
  font-weight: 800;
}
.floating-note {
  position: absolute;
  padding: 9px 12px;
  background: rgba(10, 29, 41, 0.94);
  border: 1px solid rgba(130, 227, 228, 0.2);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #d9feff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.floating-note span {
  color: #6ae1dd;
}
.note-one {
  right: 46px;
  top: 8px;
}
.note-two {
  left: -6px;
  top: 376px;
  bottom: auto;
}
.trust {
  background: linear-gradient(
    180deg,
    rgba(17, 41, 56, 0.35),
    rgba(6, 16, 27, 0)
  );
  border-top: 1px solid rgba(148, 217, 226, 0.07);
}
.section-intro.centered {
  text-align: center;
  display: grid;
  justify-items: center;
  max-width: 850px;
  margin: 0 auto 42px;
}
.section-intro.centered .eyebrow {
  justify-content: center;
}
.section-intro:not(.centered) {
  max-width: 820px;
  margin-bottom: 40px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.value-card,
.service-card,
.package-card {
  background: linear-gradient(
    145deg,
    rgba(17, 43, 59, 0.82),
    rgba(9, 26, 39, 0.82)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: 0.3s;
}
.value-card:hover,
.service-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(112, 227, 223, 0.28);
}
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(75, 221, 214, 0.1);
  color: #6ce7e1;
  border: 1px solid rgba(75, 221, 214, 0.15);
  margin-bottom: 24px;
}
.value-card h3 {
  font-size: 1.08rem;
  margin-bottom: 9px;
}
.value-card p,
.service-card p,
.package-copy {
  color: #93a9b6;
  font-size: 0.87rem;
  margin-bottom: 0;
}
.services {
  border-top: 1px solid rgba(148, 217, 226, 0.06);
}
.section-top {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}
.section-top h2 {
  max-width: 760px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 208px;
}
.service-card span {
  display: block;
  color: #62dad4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 42px;
}
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.demos {
  background: #081522;
  border-top: 1px solid rgba(148, 217, 226, 0.06);
  border-bottom: 1px solid rgba(148, 217, 226, 0.06);
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.demo-card {
  background: #0c1e2d;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s;
}
.demo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(96, 221, 218, 0.25);
}
.demo-preview {
  height: 260px;
  background: #091622;
}
.demo-browser-bar {
  height: 32px;
  padding: 0 10px;
}
.demo-browser-bar i {
  width: 6px;
  height: 6px;
}
.demo-browser-bar span {
  margin-left: auto;
  color: #6c8795;
  font-size: 0.54rem;
}
.demo-card-body {
  padding: 22px;
}
.demo-label {
  color: #66ddd7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 800;
  margin: 0 0 6px;
}
.demo-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.demo-card-body > p {
  color: #92aab6;
  font-size: 0.84rem;
  min-height: 82px;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #84eee8;
  font-weight: 800;
  font-size: 0.84rem;
}
.packages {
  position: relative;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.package-card {
  position: relative;
  padding: 32px;
}
.package-card.featured {
  background: linear-gradient(
    155deg,
    rgba(22, 66, 81, 0.98),
    rgba(10, 31, 46, 0.95)
  );
  border-color: rgba(83, 226, 219, 0.3);
  transform: translateY(-12px);
}
.package-card.featured:hover {
  transform: translateY(-18px);
}
.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 20px;
  background: rgba(97, 230, 222, 0.14);
  border: 1px solid rgba(97, 230, 222, 0.18);
  color: #83f0ea;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.53rem;
  font-weight: 800;
}
.package-kicker {
  color: #6de1dc;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.63rem;
  font-weight: 800;
}
.package-card h3 {
  font-size: 1.45rem;
  margin-bottom: 13px;
}
.package-price {
  font-size: 0.88rem;
  color: #a3b9c4;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.package-price strong {
  color: #efffff;
}
.package-copy {
  min-height: 87px;
}
.package-card ul {
  padding: 0;
  margin: 22px 0 27px;
  display: grid;
  gap: 11px;
  list-style: none;
}
.package-card li {
  position: relative;
  padding-left: 20px;
  color: #bacbd3;
  font-size: 0.82rem;
}
.package-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #67ded9;
  font-weight: 800;
}
.package-button {
  width: 100%;
}
.about {
  background: linear-gradient(
    180deg,
    rgba(12, 31, 45, 0.72),
    rgba(6, 16, 27, 0.62)
  );
  border-top: 1px solid rgba(148, 217, 226, 0.06);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-panel {
  min-height: 410px;
  border-radius: 28px;
  padding: 32px;
  background: linear-gradient(155deg, #184a5d, #0b2232 67%);
  border: 1px solid rgba(141, 230, 229, 0.22);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.about-panel:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -75px;
  top: -70px;
  border-radius: 50%;
  background: rgba(74, 230, 218, 0.13);
  filter: blur(6px);
}
.about-label {
  color: #91f0eb;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.64rem;
  font-weight: 800;
}
.about-panel h3 {
  font-size: 2.35rem;
  max-width: 400px;
  letter-spacing: -0.07em;
  position: relative;
  z-index: 1;
}
.about-lines {
  display: grid;
  gap: 8px;
}
.about-lines i {
  height: 8px;
  border-radius: 12px;
  background: rgba(120, 226, 223, 0.18);
}
.about-lines i:nth-child(2) {
  width: 73%;
}
.about-lines i:nth-child(3) {
  width: 48%;
}
.about-bottom {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(181, 238, 237, 0.18);
  color: #b9dede;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-copy p {
  font-size: 0.97rem;
}
.contact {
  position: relative;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 42px;
  background: linear-gradient(
    145deg,
    rgba(17, 55, 69, 0.84),
    rgba(9, 27, 42, 0.96)
  );
  border-radius: 28px;
  border: 1px solid rgba(114, 228, 223, 0.2);
  box-shadow: var(--shadow);
}
.contact-email {
  display: inline-block;
  color: #8ceae6;
  font-weight: 800;
  margin-top: 20px;
  font-size: 0.95rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
}
.contact-form .message-field,
.contact-form button,
.form-note,
.form-status {
  grid-column: 1/-1;
}
.contact-form span {
  font-size: 0.74rem;
  color: #b4cbd3;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(171, 222, 228, 0.14);
  background: rgba(4, 19, 28, 0.52);
  color: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(105, 232, 225, 0.48);
}
.form-note {
  color: #85a2ad;
  font-size: 0.72rem;
  margin: 0;
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  grid-column: 1/-1;
  min-height: 20px;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}
.form-status.is-success {
  color: #83f0ea;
}
.form-status.is-error {
  color: #ffb8b8;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.contact-form .button-primary,
.contact-form .button-primary span {
  color: #04161d;
}
.footer-wrap p span {
  color: #6f8793;
}
.site-footer {
  border-top: 1px solid rgba(148, 217, 226, 0.08);
  padding: 28px 0;
  background: #050d15;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-wrap strong {
  font-family: Manrope, Inter, Arial, sans-serif;
}
.footer-wrap p {
  color: #829aa6;
  font-size: 0.78rem;
  margin: 4px 0 0;
}
.footer-links {
  display: flex;
  gap: 20px;
  color: #9eb5bf;
  font-size: 0.78rem;
  font-weight: 700;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-one {
  transition-delay: 0.12s;
}
.delay-two {
  transition-delay: 0.22s;
}
.delay-three {
  transition-delay: 0.32s;
}
@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(6, 18, 29, 0.98);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 10px;
  }
  .nav-toggle {
    display: block;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 16px;
  }
  .hero-visual {
    min-height: 500px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
  .value-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-top {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: auto;
  }
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .section-pad {
    padding: 82px 0;
  }
  .section-pad-sm {
    padding: 60px 0;
  }
  .brand-copy small {
    display: none;
  }
  h1 {
    font-size: 3.45rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-visual {
    min-height: 360px;
  }
  .browser-frame {
    width: 100%;
    top: 24px;
  }
  .browser-content {
    padding: 14px;
  }
  .mock-hero {
    padding: 30px 0 18px;
  }
  .mock-copy h3 {
    font-size: 1.15rem;
  }
  .mock-art {
    min-height: 135px;
  }
  .card-one {
    width: 105px;
    height: 132px;
    right: 12px;
  }
  .card-two {
    width: 76px;
    height: 72px;
  }
  .card-three {
    width: 54px;
    height: 54px;
  }
  .phone-frame {
    width: 118px;
    right: -5px;
    border-width: 4px;
    border-radius: 22px;
    padding: 6px;
  }
  .phone-notch {
    height: 6px;
    width: 42px;
  }
  .phone-image {
    height: 62px;
  }
  .phone-content h4 {
    font-size: 0.63rem;
  }
  .phone-content p {
    font-size: 0.47rem;
  }
  .phone-button {
    padding: 5px;
    font-size: 0.5rem;
  }
  .floating-note {
    font-size: 0.54rem;
    padding: 7px 9px;
  }
  .note-one {
    right: 10px;
    top: 6px;
  }
  .note-two {
    left: 8px;
    top: auto;
    bottom: 18px;
  }
  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section-top h2 {
    font-size: 2.65rem;
  }
  .service-card {
    min-height: auto;
  }
  .service-card span {
    margin-bottom: 24px;
  }
  .contact-wrap {
    padding: 24px;
    gap: 28px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    grid-column: 1/-1;
  }
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .demo-preview {
    height: 235px;
  }
}
.hero-copy {
  padding-right: 14px;
}
.hero-copy h1 {
  overflow: visible;
}
.hero-copy h1 .hero-accent {
  padding-right: 0.28em;
  margin-right: 0.04em;
  overflow: visible;
  letter-spacing: -0.055em;
}
@media (min-width: 981px) {
  .hero-visual .note-one {
    top: 8px;
    right: 46px;
    bottom: auto;
    left: auto;
  }
  .hero-visual .note-two {
    top: 376px;
    left: -6px;
    right: auto;
    bottom: auto;
  }
}
@media (min-width: 641px) and (max-width: 980px) {
  .hero-visual .note-one {
    top: 8px;
    right: 54px;
    bottom: auto;
    left: auto;
  }
  .hero-visual .note-two {
    top: 392px;
    left: 8px;
    right: auto;
    bottom: auto;
  }
}
@media (max-width: 640px) {
  .hero-copy {
    padding-right: 4px;
  }
  .hero-copy h1 .hero-accent {
    padding-right: 0.22em;
    margin-right: 0.02em;
    letter-spacing: -0.045em;
  }
  .hero-visual .note-one {
    top: 6px;
    right: 10px;
    bottom: auto;
    left: auto;
  }
  .hero-visual .note-two {
    top: auto;
    left: 8px;
    right: auto;
    bottom: 18px;
  }
}
html {
  scroll-padding-top: 96px;
}
section[id] {
  scroll-margin-top: 96px;
}
:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(111, 231, 223, 0.95);
  outline-offset: 4px;
}
.contact-form span em {
  color: #86a6b3;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: calc(100vh - 76px);
    padding: 44px 0;
  }
  .hero-grid {
    gap: 44px;
  }
  .hero-copy h1 {
    font-size: clamp(3.75rem, 6vw, 5.2rem);
    margin-bottom: 18px;
  }
  .hero-text {
    font-size: 1.06rem;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-visual {
    min-height: 486px;
  }
  .browser-frame {
    top: 18px;
  }
  .hero-visual .note-one {
    top: 0;
  }
  .hero-visual .note-two {
    top: 350px;
  }
}
@media (min-width: 860px) and (max-width: 980px) {
  .hero {
    padding: 78px 0 66px;
  }
  .hero-grid {
    grid-template-columns: 0.96fr 1.04fr;
    gap: 28px;
    align-items: center;
  }
  .hero-copy {
    padding-top: 0;
    padding-right: 0;
  }
  .hero-copy h1 {
    font-size: clamp(3.55rem, 6.4vw, 4.1rem);
    margin-bottom: 18px;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .button {
    padding: 12px 14px;
    font-size: 0.78rem;
  }
  .hero-visual {
    min-height: 425px;
    max-width: none;
    margin: 0;
  }
  .browser-frame {
    width: 100%;
    top: 20px;
  }
  .browser-content {
    padding: 16px;
  }
  .mock-hero {
    padding: 34px 0 20px;
  }
  .mock-copy h3 {
    font-size: 1.3rem;
  }
  .mock-art {
    min-height: 146px;
  }
  .card-one {
    width: 118px;
    height: 146px;
    right: 12px;
  }
  .card-two {
    width: 88px;
    height: 84px;
  }
  .card-three {
    width: 62px;
    height: 62px;
  }
  .phone-frame {
    right: -12px;
    transform: scale(0.84);
    transform-origin: right bottom;
  }
  .hero-visual .note-one {
    top: 0;
    right: 26px;
  }
  .hero-visual .note-two {
    top: 318px;
    left: -4px;
  }
}
@media (min-width: 336px) and (max-width: 380px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-actions .button {
    padding: 12px 12px;
    font-size: 0.77rem;
    gap: 6px;
    white-space: nowrap;
  }
}
@media (max-width: 335px) {
  .hero-actions {
    gap: 10px;
  }
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #06101b;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: none;
}
.contact-form .wide-field {
  grid-column: 1/-1;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #77919d;
}
.site-footer {
  padding: 34px 0 20px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr auto;
  gap: 28px;
  align-items: center;
}
.footer-brand-link {
  display: flex;
  gap: 11px;
  align-items: center;
}
.footer-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #9af4ed);
  color: #03202a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}
.footer-brand-link span:last-child {
  display: grid;
}
.footer-brand-link small,
.footer-contact small {
  display: block;
  color: #6f8793;
  font-size: 0.66rem;
  margin-top: 3px;
}
.footer-contact a {
  display: inline-block;
  color: #8ceae6;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 2px;
}
.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 8px;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(148, 217, 226, 0.08);
  color: #6f8793;
  font-size: 0.68rem;
}
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at 70% 18%,
      rgba(52, 179, 207, 0.18),
      transparent 28%
    ),
    #06101b;
}
.thanks-card {
  width: min(100%, 720px);
  padding: 46px;
  border: 1px solid rgba(114, 228, 223, 0.2);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(17, 55, 69, 0.84),
    rgba(9, 27, 42, 0.96)
  );
  box-shadow: var(--shadow);
}
.thanks-card .brand-mark {
  margin-bottom: 28px;
}
.thanks-card h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 18px;
}
.thanks-card p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}
@media (max-width: 980px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-column: auto;
    gap: 15px;
  }
  .footer-meta {
    display: grid;
    gap: 5px;
  }
  .thanks-card {
    padding: 28px;
  }
  .thanks-card h1 {
    font-size: 3.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 981px) {
  .hero {
    min-height: calc(100vh - 77px);
    min-height: calc(100svh - 77px);
    padding: clamp(54px, 8vh, 112px) 0;
  }
}
@media (min-width: 981px) and (max-height: 700px) {
  .hero {
    padding: 26px 0;
  }
  .hero-grid {
    gap: 36px;
  }
  .hero-copy h1 {
    font-size: clamp(3.35rem, 5.45vw, 4.65rem);
    margin-bottom: 15px;
  }
  .hero-text {
    font-size: 1rem;
    line-height: 1.52;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-actions .button {
    padding: 12px 16px;
    font-size: 0.84rem;
  }
  .hero-visual {
    min-height: 420px;
  }
  .browser-frame {
    top: 8px;
  }
  .hero-visual .note-one {
    top: -2px;
  }
  .hero-visual .note-two {
    top: 306px;
  }
}
@media (min-width: 981px) and (max-height: 620px) {
  .hero {
    padding: 18px 0;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.15rem);
    margin-bottom: 13px;
  }
  .hero-text {
    font-size: 0.95rem;
    line-height: 1.48;
  }
  .hero-actions {
    margin-top: 17px;
  }
  .hero-actions .button {
    padding: 11px 14px;
    font-size: 0.8rem;
  }
  .hero-visual {
    min-height: 384px;
  }
  .browser-frame {
    top: 0;
    transform: scale(0.9);
    transform-origin: right center;
    width: 104%;
  }
  .phone-frame {
    right: -17px;
    transform: scale(0.9);
    transform-origin: right bottom;
  }
  .hero-visual .note-one {
    top: -2px;
    right: 38px;
  }
  .hero-visual .note-two {
    top: 282px;
    left: 4px;
  }
}
@media (min-width: 860px) and (max-width: 980px) and (max-height: 700px) {
  .hero {
    min-height: calc(100vh - 77px);
    min-height: calc(100svh - 77px);
    padding: 22px 0;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-copy h1 {
    font-size: clamp(2.9rem, 5.45vw, 3.4rem);
    margin-bottom: 14px;
  }
  .hero-text {
    font-size: 0.92rem;
    line-height: 1.46;
  }
  .hero-actions {
    gap: 8px;
    margin-top: 18px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    padding: 10px 11px;
    font-size: 0.73rem;
    gap: 5px;
    white-space: nowrap;
  }
  .hero-visual {
    min-height: 354px;
  }
  .browser-frame {
    top: 2px;
    width: 112%;
    transform: scale(0.86);
    transform-origin: right center;
  }
  .phone-frame {
    right: -14px;
    transform: scale(0.72);
    transform-origin: right bottom;
  }
  .hero-visual .note-one {
    top: -4px;
    right: 22px;
    transform: scale(0.9);
    transform-origin: right top;
  }
  .hero-visual .note-two {
    top: 262px;
    left: 0;
    transform: scale(0.9);
    transform-origin: left top;
  }
}
.nav-cta {
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 231, 223, 0.72);
  background: rgba(69, 214, 208, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.contact-wrap {
  scroll-margin-top: 96px;
}
.services .section-top {
  display: block;
  max-width: 820px;
}
.contact-form label,
.contact-form .form-field {
  display: grid;
  gap: 6px;
}
.contact-form .submit-label {
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
@media (max-width: 980px) {
  .contact-form input,
  .contact-form textarea {
    resize: none;
  }
  .contact-form textarea {
    overflow: auto;
  }
}
.brand {
  gap: 13px;
}
.brand-mark-image,
.footer-mark-image {
  background: transparent !important;
  color: transparent !important;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  display: grid;
  place-items: center;
}
.brand-mark-image {
  width: 50px;
  height: 36px;
  flex: 0 0 50px;
}
.footer-mark-image {
  width: 44px;
  height: 32px;
  flex: 0 0 44px;
}
.brand-mark-image img,
.footer-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}
.brand:hover .brand-mark-image img,
.brand:focus-visible .brand-mark-image img,
.footer-brand-link:hover .footer-mark-image img,
.footer-brand-link:focus-visible .footer-mark-image img {
  transform: translateY(-1px) scale(1.025);
}
.thanks-card .brand-mark-image {
  width: 76px;
  height: 46px;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .brand {
    gap: 10px;
  }
  .brand-mark-image {
    width: 43px;
    height: 31px;
    flex-basis: 43px;
  }
  .footer-mark-image {
    width: 42px;
    height: 30px;
    flex-basis: 42px;
  }
}
.site-header {
  position: relative;
  top: auto;
}
.site-shell {
  overflow: visible;
}
.hero {
  overflow: hidden;
}
.hero-glow,
.grid-overlay {
  pointer-events: none;
}
.button,
.nav-cta {
  min-height: 44px;
}
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  touch-action: manipulation;
}
.nav-toggle span {
  margin: 3px 0;
}
.text-link {
  min-height: 44px;
  align-items: center;
  padding: 7px 0;
}
.demo-card .text-link {
  margin-top: 2px;
  padding-inline: 2px;
}
.footer-links a,
.footer-contact a,
.footer-brand-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.75s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
.brand-copy small {
  display: block;
}
.brand {
  min-height: 44px;
}
.nav-toggle {
  position: relative;
  overflow: hidden;
  color: #fff;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.nav-toggle span {
  transition:
    transform 0.24s ease,
    opacity 0.18s ease,
    width 0.22s ease,
    background-color 0.22s ease;
}
.nav-open .site-header {
  border-bottom-color: rgba(132, 238, 232, 0.14);
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 24px;
}
.about-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(132, 238, 232, 0.16);
  border-radius: 999px;
  background: rgba(69, 214, 208, 0.06);
  color: #cce9ef;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.services .section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: end;
  max-width: none;
}
.services-intro {
  margin: 0 0 4px;
}
.service-card-core {
  position: relative;
  overflow: hidden;
}
.service-card-core:after {
  content: "";
  position: absolute;
  inset: auto -26px -40px auto;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(78, 223, 216, 0.065);
  filter: blur(2px);
  pointer-events: none;
}
.service-support-panel {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(127, 221, 224, 0.16);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(14, 38, 54, 0.78),
    rgba(8, 24, 37, 0.82)
  );
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.16);
}
.service-support-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 4px 6px;
}
.service-support-kicker {
  margin: 0;
  color: #6fe7df;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.62rem;
  font-weight: 800;
}
.service-support-copy h3 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.service-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.service-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(154, 204, 220, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.service-pill span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #8df1ec;
  background: rgba(69, 214, 208, 0.09);
  border: 1px solid rgba(69, 214, 208, 0.13);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.service-pill h4 {
  margin: 0 0 5px;
  font-size: 0.94rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.service-pill p {
  margin: 0;
  color: #93a9b6;
  font-size: 0.78rem;
  line-height: 1.48;
}
.demo-card {
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
}
.demo-preview {
  position: relative;
  height: 285px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 70% 8%,
      rgba(99, 167, 255, 0.16),
      transparent 30%
    ),
    #091622;
}
.demo-browser-bar {
  position: relative;
  z-index: 2;
}
.demo-preview-picture {
  display: block;
  width: 100%;
  height: calc(100% - 32px);
}
.demo-preview-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.001);
  filter: saturate(1.03) contrast(1.02);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.demo-preview:after {
  content: "";
  position: absolute;
  inset: 32px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    transparent 34%,
    rgba(0, 0, 0, 0.16)
  );
  pointer-events: none;
}
.demo-card:hover .demo-preview-shot {
  transform: scale(1.018);
  filter: saturate(1.07) contrast(1.03);
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
  }
  .nav-toggle {
    display: grid;
    padding: 0;
  }
  .nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 6px));
  }
  .nav-toggle span:nth-child(2) {
    width: 16px;
    transform: translate(calc(-50% + 2px), -50%);
  }
  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 6px));
  }
  .nav-toggle[aria-expanded="true"] {
    background: rgba(69, 214, 208, 0.08);
    border: 1px solid rgba(132, 238, 232, 0.13);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 8px;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .main-nav {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 22px;
    background: linear-gradient(155deg, #071521, #091b2a);
    border: 1px solid rgba(132, 238, 232, 0.14);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease,
      border-color 0.2s ease;
    overflow: hidden;
  }
  .main-nav:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at 50% -40%,
      rgba(69, 214, 208, 0.16),
      transparent 42%
    );
    pointer-events: none;
  }
  .main-nav.open {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a {
    position: relative;
    z-index: 1;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    color: #d9eaf1;
    background: rgba(255, 255, 255, 0.04);
  }
  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: #fff;
    background: rgba(69, 214, 208, 0.075);
  }
  .main-nav .nav-cta {
    margin-top: 2px;
    background: linear-gradient(
      135deg,
      rgba(69, 214, 208, 0.16),
      rgba(99, 167, 255, 0.12)
    );
    border-color: rgba(111, 231, 223, 0.28);
  }
  .services .section-top {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 760px;
  }
  .services-intro {
    max-width: 640px;
  }
  .service-support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section-pad {
    padding: 74px 0;
  }
  .section-pad-sm {
    padding: 54px 0;
  }
  .services.section-pad,
  .demos.section-pad,
  .packages.section-pad {
    padding: 62px 0;
  }

  .brand {
    gap: 10px;
  }
  .brand-mark-image {
    width: 43px;
    height: 31px;
    flex-basis: 43px;
  }
  .brand-copy strong {
    font-size: 0.92rem;
  }
  .brand-copy small {
    display: block;
    font-size: 0.61rem;
    margin-top: 3px;
  }

  .main-nav {
    text-align: center;
  }
  .main-nav a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: calc(100svh - 77px);
    padding: 50px 0 56px;
    align-items: center;
  }
  .hero-grid {
    display: block;
  }
  .hero-visual {
    display: none;
  }
  .hero-copy {
    width: 100%;
    max-width: 34rem;
    padding: 0;
  }
  .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(3rem, 13.5vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.07em;
    margin-bottom: 18px;
  }
  .hero-copy h1 .hero-accent {
    padding-right: 0.14em;
    margin-right: 0;
    letter-spacing: -0.045em;
  }
  .hero-text {
    max-width: 29rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .hero-actions {
    flex-wrap: nowrap;
    gap: 9px;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 44px;
    padding: 12px 13px;
    font-size: 0.78rem;
    line-height: 1.1;
    white-space: nowrap;
  }
  .hero-glow {
    filter: blur(66px);
    opacity: 0.15;
  }
  .hero-glow-one {
    width: 270px;
    height: 270px;
    right: -118px;
    top: 30px;
  }
  .hero-glow-two {
    width: 230px;
    height: 230px;
    left: 50%;
    right: auto;
    bottom: -142px;
    transform: translateX(-50%);
  }

  .hero-copy,
  .section-intro,
  .section-top,
  .value-card,
  .service-card,
  .demo-card-body,
  .package-card,
  .about-copy,
  .contact-copy,
  .contact-form,
  .site-footer,
  .footer-wrap,
  .footer-meta,
  .thanks-card {
    text-align: center;
  }
  .hero-copy,
  .section-intro:not(.centered),
  .section-top,
  .about-copy,
  .contact-copy {
    display: grid;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy h1,
  .hero-text,
  .section-intro > p,
  .section-top h2,
  .section-top > p,
  .about-copy p,
  .contact-copy p,
  .thanks-card p {
    margin-left: auto;
    margin-right: auto;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .button {
    justify-content: center;
  }

  .section-intro.centered,
  .section-intro:not(.centered),
  .section-top {
    margin-bottom: 26px;
  }
  .services .section-intro,
  .demos .section-intro,
  .packages .section-intro,
  .services .section-top {
    margin-bottom: 22px;
  }
  h2,
  .section-top h2 {
    font-size: clamp(2.14rem, 10vw, 2.62rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
  }
  .section-intro > p:last-child,
  .section-top > p,
  .about-copy p,
  .contact-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .value-grid,
  .service-grid,
  .demo-grid,
  .package-grid {
    gap: 12px;
  }
  .services .service-grid,
  .demos .demo-grid,
  .packages .package-grid {
    gap: 10px;
  }
  .value-card,
  .service-card,
  .package-card {
    display: grid;
    justify-items: center;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin: 0 auto 16px;
  }
  .value-card h3,
  .service-card h3 {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }
  .value-card p,
  .service-card p,
  .package-copy {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .services .section-top {
    max-width: 760px;
    gap: 12px;
    margin-bottom: 22px;
  }
  .services-intro {
    font-size: 0.91rem;
    line-height: 1.55;
    max-width: 29rem;
  }
  .service-card {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .service-card span {
    margin: 0 auto 14px;
    text-align: center;
  }
  .service-card-core:after {
    width: 96px;
    height: 96px;
    right: -34px;
    bottom: -42px;
  }
  .service-support-panel {
    margin-top: 10px;
    padding: 18px;
    border-radius: 22px;
    text-align: center;
  }
  .service-support-copy {
    justify-items: center;
    padding: 0 2px 4px;
  }
  .service-support-copy h3 {
    max-width: 18rem;
    font-size: 1.42rem;
  }
  .service-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .service-pill {
    grid-template-columns: 1fr;
    justify-items: center;
    min-width: 0;
    gap: 7px;
    padding: 12px 8px;
  }
  .service-pill span {
    width: 29px;
    height: 29px;
    font-size: 0.6rem;
  }
  .service-pill h4 {
    max-width: 8.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.84rem;
    line-height: 1.16;
    margin-bottom: 4px;
  }
  .service-pill p {
    max-width: 9.6rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .demo-preview {
    height: 238px;
  }
  .demo-preview-shot {
    object-position: left top;
  }
  .demo-card-body {
    display: grid;
    justify-items: center;
    padding: 18px;
  }
  .demo-card-body > div,
  .demo-card-body > p {
    width: 100%;
  }
  .demo-card-body h3 {
    font-size: 1.14rem;
    margin-bottom: 10px;
  }
  .demo-card-body > p {
    min-height: auto;
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .text-link {
    justify-content: center;
  }

  .package-grid {
    margin-top: 28px;
  }
  .package-card h3 {
    font-size: 1.28rem;
    margin-bottom: 9px;
  }
  .package-price {
    padding-bottom: 14px;
  }
  .package-copy {
    min-height: auto;
  }
  .package-card ul {
    width: 100%;
    max-width: 300px;
    justify-items: center;
    margin: 16px 0 20px;
    gap: 8px;
  }
  .package-card li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding-left: 0;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.45;
  }
  .package-card li:before {
    position: static;
    transform: none;
    flex: 0 0 auto;
  }
  .popular-tag {
    position: static;
    justify-self: center;
    margin: 0 0 16px;
  }
  .package-button {
    max-width: 320px;
    justify-self: center;
  }

  .about-grid {
    gap: 34px;
  }
  .about-panel {
    width: 100%;
    max-width: 100%;
    min-height: 342px;
    padding: 24px 20px;
    border-radius: 24px;
    text-align: center;
    align-items: center;
  }
  .about-panel:after {
    width: 190px;
    height: 190px;
    right: -72px;
    top: -60px;
  }
  .about-panel h3 {
    max-width: 10.8em;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.9rem, 9vw, 2.18rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
  }
  .about-lines {
    width: 100%;
    justify-items: center;
  }
  .about-lines i {
    width: 100%;
  }
  .about-lines i:nth-child(2) {
    width: 73%;
  }
  .about-lines i:nth-child(3) {
    width: 48%;
  }
  .about-bottom {
    gap: 10px 14px;
    font-size: 0.6rem;
    justify-content: center;
  }
  .about-copy {
    max-width: 34rem;
  }
  .about-copy p:not(.eyebrow) {
    max-width: 30rem;
  }
  .about-highlights {
    justify-content: center;
    gap: 8px;
    margin: 18px 0 20px;
  }
  .about-highlights span {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.69rem;
  }

  .contact-wrap {
    justify-items: center;
    padding: 22px;
    gap: 24px;
    border-radius: 24px;
  }
  .contact-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .contact-form {
    width: 100%;
    gap: 12px;
  }
  .contact-form label,
  .contact-form .form-field {
    justify-items: stretch;
    text-align: center;
  }
  .contact-form span,
  .form-note,
  .form-status {
    text-align: center;
  }
  .contact-form input,
  .contact-form textarea {
    min-width: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
  }
  .contact-form textarea {
    min-height: 132px;
  }
  .contact-form button {
    width: min(100%, 320px);
    justify-self: center;
  }

  .footer-wrap {
    align-items: center;
    justify-items: center;
  }
  .footer-brand,
  .footer-contact {
    width: 100%;
    text-align: center;
  }
  .footer-brand-link {
    justify-content: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    text-align: center;
    gap: 12px 15px;
  }
  .footer-links a {
    padding-inline: 3px;
  }
  .footer-meta {
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
    gap: 6px;
    width: 100%;
  }
  .footer-meta span {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .brand {
    gap: 8px;
  }
  .brand-mark-image {
    width: 39px;
    height: 28px;
    flex-basis: 39px;
  }
  .brand-copy strong {
    font-size: 0.84rem;
  }
  .brand-copy small {
    font-size: 0.56rem;
  }
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }
  .hero {
    padding: 42px 0 50px;
  }
  .hero-copy h1 {
    max-width: 11.2ch;
    font-size: clamp(2.86rem, 13.1vw, 3.02rem);
    letter-spacing: -0.064em;
  }
  .hero-text {
    font-size: 0.94rem;
  }
  .hero-actions {
    gap: 7px;
  }
  .hero-actions .button {
    min-height: 44px;
    padding: 10px 10px;
    font-size: 0.72rem;
    gap: 5px;
  }
  h2,
  .section-top h2 {
    font-size: clamp(2rem, 9.7vw, 2.34rem);
  }
  .value-card,
  .service-card,
  .package-card,
  .demo-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .service-support-panel {
    padding: 18px;
  }
  .demo-preview {
    height: 230px;
  }
  .package-card ul {
    max-width: 276px;
  }
  .contact-wrap {
    padding: 20px 18px;
  }
}

@media (max-width: 335px) {
  .hero-actions .button {
    font-size: 0.68rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-support-grid {
    grid-template-columns: 1fr;
  }
  .service-pill p {
    max-width: 17rem;
  }
  .demo-preview {
    height: 232px;
  }
}
.trust .section-intro.centered {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.trust .section-intro > p:last-child {
  max-width: 580px;
}
.trust-grid {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.trust-card {
  min-height: 0;
}
.trust-card .icon-box {
  margin-bottom: 20px;
}
.trust-card h3 {
  max-width: 12rem;
}
.trust-card p {
  max-width: 13rem;
}
.package-card {
  overflow: hidden;
}
.package-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -64px;
  top: -72px;
  border-radius: 999px;
  background: rgba(69, 214, 208, 0.055);
  pointer-events: none;
}
.package-card.featured:after {
  background: rgba(99, 167, 255, 0.09);
}
.package-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  margin: 0 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(132, 238, 232, 0.18);
  background: rgba(69, 214, 208, 0.075);
  color: #9af4ed;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.package-stage-featured {
  background: rgba(99, 167, 255, 0.12);
  border-color: rgba(132, 213, 255, 0.28);
  color: #c8e6ff;
}
.package-business .package-stage {
  background: rgba(99, 167, 255, 0.1);
  border-color: rgba(99, 167, 255, 0.22);
  color: #b9dcff;
}
.package-automation .package-stage {
  background: rgba(154, 244, 237, 0.065);
}
.package-fit {
  margin: 0 0 16px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(154, 204, 220, 0.1);
  border-bottom: 1px solid rgba(154, 204, 220, 0.1);
  color: #a9bdc7;
  font-size: 0.84rem;
  line-height: 1.5;
}
.package-fit strong {
  color: #efffff;
}
.package-copy {
  min-height: 75px;
}
.package-landing {
  border-color: rgba(154, 204, 220, 0.12);
}
.package-business {
  border-color: rgba(83, 226, 219, 0.3);
}
.package-automation {
  border-color: rgba(120, 184, 255, 0.16);
}

@media (max-width: 980px) {
  .package-card:after {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 640px) {
  .trust.section-pad-sm {
    padding: 48px 0 50px;
  }
  .trust .section-intro.centered {
    margin-bottom: 18px;
  }
  .trust .section-intro > p:last-child {
    max-width: 27rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .trust-card {
    padding: 16px 10px;
    border-radius: 18px;
  }
  .trust-card .icon-box {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    font-size: 0.88rem;
  }
  .trust-card h3 {
    max-width: 9.8rem;
    min-height: 2.3em;
    margin-bottom: 5px;
    font-size: 0.86rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  .trust-card p {
    max-width: 10rem;
    font-size: 0.69rem;
    line-height: 1.35;
  }
  .packages.section-pad {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .package-grid {
    gap: 11px;
    margin-top: 24px;
  }
  .package-card {
    padding: 20px 18px;
  }
  .package-card:after {
    width: 108px;
    height: 108px;
    right: -52px;
    top: -56px;
  }
  .package-stage {
    min-height: 26px;
    margin-bottom: 13px;
    padding: 4px 9px;
    font-size: 0.56rem;
  }
  .popular-tag {
    margin-bottom: 10px;
  }
  .package-kicker {
    margin-bottom: 7px;
    font-size: 0.58rem;
  }
  .package-card h3 {
    font-size: 1.24rem;
    margin-bottom: 12px;
  }
  .package-fit {
    max-width: 18rem;
    margin: 0 auto 11px;
    padding: 10px 0 11px;
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .package-copy {
    max-width: 18rem;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    line-height: 1.45;
  }
  .package-card ul {
    margin: 12px 0 17px;
    gap: 7px;
  }
  .package-card li {
    font-size: 0.78rem;
    line-height: 1.36;
  }
  .package-button {
    min-height: 45px;
  }
}

@media (max-width: 360px) {
  .trust-grid {
    gap: 7px;
  }
  .trust-card {
    padding: 15px 8px;
  }
  .trust-card h3 {
    font-size: 0.8rem;
  }
  .trust-card p {
    font-size: 0.66rem;
  }
  .package-fit {
    font-size: 0.76rem;
  }
}

@media (max-width: 335px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    padding: 17px 16px;
  }
  .trust-card h3 {
    min-height: 0;
    max-width: 16rem;
  }
  .trust-card p {
    max-width: 17rem;
  }
}
.footer-links a span[aria-hidden="true"] {
  margin-left: 4px;
}
@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background:
      radial-gradient(circle at 50% 0%, rgba(69, 214, 208, 0.12), transparent 34%),
      rgba(3, 9, 15, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .site-header {
    z-index: 70;
  }
  .nav-open .site-header {
    background: rgba(6, 16, 27, 0.94);
    border-bottom-color: rgba(132, 238, 232, 0.16);
  }
  .main-nav {
    z-index: 75;
    gap: 5px;
    padding: 10px;
    background:
      radial-gradient(circle at 50% -26%, rgba(69, 214, 208, 0.15), transparent 42%),
      linear-gradient(155deg, rgba(5, 15, 25, 0.99), rgba(7, 20, 32, 0.99));
    border-color: rgba(132, 238, 232, 0.2);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.52);
  }
  .main-nav:before {
    opacity: 0.86;
  }
  .main-nav a {
    min-height: 40px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 68px 0;
  }
  .services.section-pad,
  .demos.section-pad,
  .packages.section-pad {
    padding: 58px 0;
  }
  .hero {
    padding: 38px 0 50px;
  }
  .hero-copy h1 {
    font-size: clamp(2.9rem, 12.8vw, 3.2rem);
    max-width: 11.25ch;
    margin-bottom: 16px;
  }
  .hero-text {
    max-width: 27rem;
  }
  .services-intro {
    max-width: 27rem;
  }
  .service-card {
    padding: 18px 18px;
  }
  .service-support-panel {
    padding: 16px;
    gap: 14px;
  }
  .service-support-copy h3 {
    max-width: 17rem;
    font-size: 1.34rem;
  }
  .service-pill {
    padding: 11px 8px;
  }
  .demo-preview {
    height: 286px;
  }
  .demo-preview-shot {
    object-position: top center;
  }
  .packages.section-pad {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .package-grid {
    margin-top: 20px;
  }
  .package-business {
    order: -1;
  }
  .package-card {
    padding: 18px 18px;
  }
  .package-fit {
    margin-bottom: 9px;
  }
  .package-card ul {
    margin: 10px 0 15px;
  }
  .about-grid {
    gap: 24px;
  }
  .about-copy {
    order: -1;
  }
  .about-panel {
    min-height: 286px;
    padding: 22px 18px;
  }
  .about-panel h3 {
    max-width: 11.5em;
    font-size: clamp(1.66rem, 8vw, 1.98rem);
  }
  .about-bottom {
    gap: 8px 12px;
  }
  .contact-wrap {
    padding: 20px 18px;
    gap: 18px;
  }
  .contact-form {
    gap: 10px;
  }
  .contact-form textarea {
    min-height: 116px;
  }
  .form-note {
    max-width: 19rem;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    gap: 10px 13px;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: clamp(2.72rem, 12.7vw, 2.9rem);
  }
  .service-support-grid {
    gap: 7px;
  }
  .package-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.icon-box svg {
  width: 21px;
  height: 21px;
  display: block;
  overflow: visible;
}
.icon-box svg path,
.icon-box svg rect,
.icon-box svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-card:nth-child(1) .icon-box svg path,
.trust-card:nth-child(2) .icon-box svg rect {
  fill: rgba(108, 231, 225, 0.1);
}
.icon-box {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 26px rgba(69, 214, 208, 0.08);
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: min(100%, 13.6em);
    font-size: clamp(2.62rem, 10.9vw, 2.96rem);
  }
  .hero-main,
  .hero-bridge {
    display: block;
    white-space: nowrap;
  }
  .hero-copy h1 .hero-bridge {
    margin-top: 0.02em;
    font-size: 0.78em;
    line-height: 1.08;
    letter-spacing: -0.048em;
  }
  .hero-copy h1 .hero-accent {
    padding-right: 0.08em;
    letter-spacing: -0.045em;
  }

  .packages.section-pad {
    padding-top: 50px;
    padding-bottom: 52px;
  }
  .packages .section-intro.centered {
    margin-bottom: 14px;
  }
  .packages .section-intro > p:last-child {
    max-width: 25rem;
    font-size: 0.89rem;
    line-height: 1.5;
  }
  .package-grid {
    margin-top: 16px;
    gap: 9px;
  }
  .package-card {
    padding: 16px;
    border-radius: 18px;
  }
  .package-stage {
    min-height: 24px;
    margin-bottom: 9px;
    padding: 4px 8px;
    font-size: 0.53rem;
  }
  .package-kicker {
    margin-bottom: 5px;
    font-size: 0.55rem;
  }
  .package-card h3 {
    font-size: 1.17rem;
    margin-bottom: 9px;
  }
  .package-fit {
    max-width: 18.5rem;
    margin-bottom: 8px;
    padding: 8px 0 9px;
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .package-copy {
    max-width: 18.5rem;
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .package-card ul {
    margin: 8px 0 12px;
    gap: 5px;
  }
  .package-card li {
    font-size: 0.74rem;
    line-height: 1.3;
  }
  .package-button {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: clamp(2.36rem, 10.8vw, 2.56rem);
  }
  .hero-copy h1 .hero-bridge {
    font-size: 0.76em;
  }
  .packages .section-intro > p:last-child {
    font-size: 0.86rem;
  }
  .package-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 641px) {
  .hero-main,
  .hero-bridge {
    display: contents;
    white-space: normal;
  }
}
.trust-card,
.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.trust-card .icon-box {
  margin-left: auto;
  margin-right: auto;
}
.trust-card h3,
.trust-card p,
.service-card h3,
.service-card p {
  margin-left: auto;
  margin-right: auto;
}
.form-note {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 641px) and (max-width: 980px) {
  .section-top,
  .about-copy,
  .contact-copy {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .section-top {
    max-width: 780px;
  }
  .section-top h2,
  .section-top > p,
  .about-copy p,
  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .eyebrow {
    justify-content: center;
  }
  .demo-card-body {
    text-align: center;
  }
  .demo-card-body > p {
    max-width: 32rem;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .demo-card-body .text-link {
    justify-content: center;
  }
  .package-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .package-card ul {
    width: min(100%, 30rem);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .package-button {
    justify-self: center;
  }
}
@media (min-width: 641px) {
  .hero-copy,
  .section-intro:not(.centered),
  .section-top,
  .service-support-copy,
  .demo-card-body,
  .package-card,
  .about-copy,
  .contact-copy,
  .footer-brand,
  .footer-contact {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1,
  .hero-text,
  .section-intro > p,
  .section-top h2,
  .section-top > p,
  .services-intro,
  .service-support-copy h3,
  .demo-card-body > p,
  .package-fit,
  .package-copy,
  .about-copy p,
  .contact-copy p,
  .form-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .section-intro .eyebrow,
  .section-top .eyebrow,
  .about-copy .eyebrow,
  .contact-copy .eyebrow,
  .footer-brand-link,
  .footer-links {
    justify-content: center;
  }

  .services .section-top {
    grid-template-columns: 1fr;
    max-width: 820px;
    gap: 14px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .services-intro {
    max-width: 34rem;
    text-align: center;
  }

  .value-card,
  .service-card,
  .trust-card,
  .service-support-panel,
  .service-pill,
  .demo-card,
  .package-card,
  .about-panel,
  .contact-wrap {
    text-align: center;
  }

  .value-card,
  .service-card,
  .trust-card,
  .service-pill {
    display: grid;
    justify-items: center;
  }

  .icon-box,
  .trust-card .icon-box,
  .service-card span,
  .service-pill span,
  .package-stage,
  .popular-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .value-card h3,
  .value-card p,
  .service-card h3,
  .service-card p,
  .trust-card h3,
  .trust-card p,
  .service-pill h4,
  .service-pill p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-support-panel {
    grid-template-columns: 1fr;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .service-support-copy {
    max-width: 620px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-support-grid {
    width: 100%;
    max-width: 760px;
  }

  .service-pill {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 9px;
  }

  .demo-card-body > div,
  .demo-card-body > p {
    width: 100%;
  }

  .demo-card-body .text-link,
  .text-link {
    justify-content: center;
  }

  .package-card {
    justify-content: stretch;
  }

  .package-card ul {
    width: min(100%, 31rem);
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    text-align: center;
  }

  .package-card li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-left: 0;
    text-align: center;
  }

  .package-card li:before {
    position: static;
    transform: none;
    flex: 0 0 auto;
  }

  .package-button,
  .contact-form button {
    justify-self: center;
  }

  .about-grid {
    align-items: center;
  }

  .about-panel {
    align-items: center;
  }

  .about-panel h3 {
    margin-left: auto;
    margin-right: auto;
  }

  .about-lines {
    width: 100%;
    justify-items: center;
  }

  .about-lines i:nth-child(1) {
    width: min(100%, 420px);
  }

  .about-bottom,
  .about-highlights {
    justify-content: center;
  }

  .contact-wrap {
    align-items: center;
  }

  .contact-form label,
  .contact-form .form-field {
    justify-items: stretch;
    text-align: center;
  }

  .contact-form span,
  .form-note,
  .form-status {
    text-align: center;
  }
}

@media (min-width: 981px) {
  .package-card ul {
    max-width: 300px;
  }

  .contact-wrap {
    grid-template-columns: 0.86fr 1.14fr;
  }
}
@media (min-width: 641px) {
  .hero-main,
  .hero-bridge {
    display: block;
  }

  .hero-bridge {
    white-space: nowrap;
    font-size: 0.84em;
    line-height: 1.08;
  }

  .package-card ul {
    display: grid;
    justify-content: center;
    justify-items: center;
  }

  .package-card li {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .hero-copy h1 {
    font-size: clamp(3.35rem, 5.55vw, 4.2rem);
  }

  .hero-bridge {
    font-size: 0.8em;
  }
}
@media (min-width: 641px) {
  .demos .section-intro:not(.centered) {
    width: min(100%, 820px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-items: center;
  }

  .demos .section-intro:not(.centered) > h2,
  .demos .section-intro:not(.centered) > p {
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-form .button-primary {
  margin-top: clamp(10px, 1.6vw, 18px);
}

.contact-form .button-primary + .form-note {
  margin-top: clamp(2px, 0.45vw, 6px);
}

@media (max-width: 640px) {
  .contact-form .button-primary {
    margin-top: 12px;
  }

  .contact-form .button-primary + .form-note {
    margin-top: 4px;
  }
}
.contact-form .form-status:empty {
  display: none;
  min-height: 0;
}

.contact-form .form-note + .form-status:not(:empty) {
  margin-top: clamp(6px, 0.8vw, 10px);
}
@media (max-width: 640px) {
  .contact-form .button-primary {
    width: min(100%, 288px);
    min-height: 44px;
    padding: 11px 15px;
    margin-top: 10px;
  }

  .contact-form .submit-label {
    font-size: 0.84rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .contact-form .button-primary + .form-note {
    max-width: 18.5rem;
    margin-top: 3px;
    font-size: 0.66rem;
    line-height: 1.45;
  }
}
@media (max-width: 640px) {
  .contact-form .button-primary {
    width: min(100%, 252px);
    min-height: 40px;
    padding: 9px 13px;
    margin-top: 10px;
  }

  .contact-form .submit-label {
    font-size: 0.76rem;
    line-height: 1.16;
    letter-spacing: -0.012em;
  }

  .contact-form .button-primary + .form-note {
    max-width: 15.75rem;
    margin-top: 2px;
    font-size: 0.59rem;
    line-height: 1.42;
  }
}
.demo-preview {
  height: auto;
}
.demo-preview-picture {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1180 / 705;
  background:
    radial-gradient(circle at 72% 0%, rgba(99, 167, 255, 0.13), transparent 38%),
    #091622;
}
.demo-preview-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transform: none;
}
.demo-card:hover .demo-preview-shot {
  transform: none;
  filter: saturate(1.06) contrast(1.03);
}
.demo-preview:after {
  inset: 32px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    transparent 40%,
    rgba(0, 0, 0, 0.12)
  );
}
.demo-card-body .text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 16px;
  border: 1px solid rgba(132, 238, 232, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(69, 214, 208, 0.12), rgba(99, 167, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
  color: #dffcff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}
.demo-card-body .text-link span {
  display: inline-block;
  transform: translateY(-1px);
  font-size: 0.82em;
  transition: transform 0.24s ease;
}
.demo-card-body .text-link:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 238, 232, 0.52);
  background:
    linear-gradient(135deg, rgba(69, 214, 208, 0.2), rgba(99, 167, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}
.demo-card-body .text-link:hover span {
  transform: translate(2px, -2px);
}

@media (max-width: 980px) {
  .demo-preview {
    height: auto;
  }
  .demo-preview-shot {
    object-position: top center;
  }
}

@media (max-width: 640px) {
  .demo-preview {
    height: auto;
  }
  .demo-preview-picture {
    aspect-ratio: 1180 / 705;
  }
  .demo-card-body .text-link {
    min-height: 40px;
    margin-top: 8px;
    padding: 10px 15px;
    font-size: 0.72rem;
  }
}
.contact-form .form-note a,
.thanks-privacy a,
.legal-card a:not(.legal-brand){
  color:#bff7f3;
  font-weight:750;
  text-decoration:underline;
  text-decoration-color:rgba(111,231,223,.42);
  text-underline-offset:3px;
}
.contact-form .form-note a:hover,
.thanks-privacy a:hover,
.legal-card a:not(.legal-brand):hover{color:#fff;text-decoration-color:currentColor}
.contact-form .button[disabled]{cursor:default;opacity:.82;transform:none}
.thanks-privacy{margin:20px 0 0;font-size:.75rem}

.legal-page{
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:clamp(28px,5vw,72px) 18px;
  background:
    radial-gradient(circle at 12% 4%,rgba(69,214,208,.13),transparent 30%),
    radial-gradient(circle at 92% 18%,rgba(99,167,255,.11),transparent 30%),
    var(--bg);
}
.legal-card{
  width:min(100%,860px);
  padding:clamp(28px,5vw,64px);
  border:1px solid rgba(154,204,220,.15);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(16,35,52,.94),rgba(9,23,36,.98));
  box-shadow:var(--shadow);
}
.legal-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:clamp(42px,7vw,72px);
}
.legal-brand>span:last-child{display:grid;line-height:1.15}
.legal-brand strong{font-family:Manrope,Inter,Arial,sans-serif;font-size:.98rem}
.legal-brand small{margin-top:4px;color:var(--muted);font-size:.68rem}
.legal-card>h1{max-width:760px;font-size:clamp(2.65rem,6vw,5.25rem)}
.legal-intro{max-width:680px;margin:0 0 42px;color:var(--muted);font-size:1.05rem}
.legal-card section{padding:24px 0;border-top:1px solid var(--line)}
.legal-card section h2{margin:0 0 9px;font-size:clamp(1.2rem,2.2vw,1.55rem);letter-spacing:-.035em}
.legal-card section p{max-width:720px;margin:0;color:#b1c3ce;font-size:.92rem;line-height:1.75}
.legal-footer{display:flex;justify-content:space-between;gap:20px;margin-top:18px;padding-top:25px;border-top:1px solid var(--line);color:var(--muted);font-size:.72rem}

@media (max-width:980px){
  .nav-toggle{width:44px;height:44px;padding:7px;display:grid;place-content:center}
  .main-nav a,
  .footer-links a,
  .footer-contact a{min-height:44px;display:inline-flex;align-items:center}
  .contact-form .button-primary{min-height:44px}
}
@media (max-width:640px){
  .legal-card{padding:28px 22px;border-radius:22px}
  .legal-brand{margin-bottom:42px}
  .legal-footer{display:grid;gap:10px}
}

@media (min-width:2200px) and (min-height:1100px){
  :root{--container:1440px}
  .section-pad{padding-block:140px}
  .hero{min-height:min(1120px,calc(100svh - 76px))}
  .hero-grid{gap:92px}
  .hero-copy h1{max-width:860px;font-size:6.7rem}
  .hero-text{max-width:690px;font-size:1.25rem}
  .hero-visual{min-height:640px}
  .browser-frame{width:98%;top:20px}
  .section-intro{max-width:900px}
}

/* Production touch-target floor. Slightly exceeds 44px so fractional browser
   rounding never leaves a primary control below the intended mobile target. */
@media (max-width:980px){
  .main-nav a{min-height:46px}
  .nav-toggle{width:46px;height:46px}
}
@media (max-width:640px){
  .demo-card-body .text-link{min-height:44px}
}
