@charset "UTF-8";

@font-face {
  font-family: "BDM Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/manrope-latin.woff2") format("woff2");
}

:root {
  --ink: #19161f;
  --muted: #625e6b;
  --purple: #7442e8;
  --purple-dark: #602bd0;
  --lilac: #e9dfff;
  --line: #e6e2eb;
  --surface: #f8f7fc;
  --mint: #d7f2df;
  --peach: #ffe1ca;
  --radius: 18px;
  --page: 1200px;
  font-family: "BDM Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
::selection {
  background: #dcccff;
  color: #21123e;
}
.container {
  width: min(var(--page), calc(100% - 80px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 50;
  left: 20px;
  top: 12px;
  padding: 14px 20px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
[hidden] {
  display: none !important;
}
.announcement {
  min-height: 40px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.announcement-label {
  color: #d5c0ff;
}
.announcement a {
  display: flex;
  align-items: center;
  gap: 24px;
}
.announcement a:hover {
  text-decoration: underline;
}
.announcement a span {
  font-size: 1.1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 183px;
  height: auto;
}
.footer-brand .brand-logo {
  width: 220px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 600;
}
.navigation > a:not(.button) {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-block: 20px;
}
.navigation > a:not(.button):hover {
  color: var(--purple);
}
.nav-product-dot,
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 15px 23px;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 1.3rem;
  line-height: 1;
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.8125rem;
  gap: 20px;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #39303f;
}
.button-purple {
  background: var(--purple);
  color: #fff;
}
.button-purple:hover {
  background: var(--purple-dark);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.5;
}
.text-link span {
  font-size: 1.25rem;
}
.text-link:hover {
  color: var(--purple);
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--surface);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
  min-height: 692px;
  padding-block: 66px 80px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.65;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero h1 {
  font-size: clamp(3.9rem, 5.5vw, 5rem);
  font-weight: 650;
  line-height: 1.065;
  letter-spacing: -0.058em;
  margin: 24px 0;
}
.highlight {
  color: var(--purple);
  position: relative;
}
.highlight::after {
  content: "";
  height: 8px;
  border: 2px solid #bc9ef7;
  border-color: #bc9ef7 transparent transparent;
  border-radius: 50%;
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  transform: rotate(-3deg);
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 435px;
  color: var(--muted);
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #746e7d;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note span {
  color: var(--purple);
  font-size: 0.95rem;
}
.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0 55px;
}
.visual-orbit {
  position: absolute;
  inset: 28px -35px 2px 20px;
  background: #e7dcfa;
  border-radius: 46% 54% 44% 56%;
  transform: rotate(-12deg);
}
.orbit-two {
  inset: 64px -15px -15px 60px;
  background: #eee6fa;
  border-radius: 50%;
  transform: rotate(20deg);
  border: 1px solid #ddd0f3;
}
.product-window {
  position: relative;
  width: 100%;
  border: 1px solid #ded8e8;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 60px #492b7320;
  transform: rotate(-3deg);
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 19px;
  background: #faf9fd;
  border-bottom: 1px solid #eae6f0;
  border-radius: 15px 15px 0 0;
  color: #7e758b;
  font-size: 0.75rem;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ded8e6;
}
.window-dots i:first-child {
  background: #c4b1e6;
}
.window-plus {
  font-size: 1rem;
}
.window-content {
  padding: 27px;
}
.product-window-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-window-heading img {
  width: 138px;
}
.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  background: #f3f0f9;
  padding: 6px 9px;
  font-size: 0.625rem;
  color: #70667d;
  font-weight: 650;
  letter-spacing: 0.03em;
}
.live-pill > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8254ce;
}
.window-title {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  font-weight: 650;
  line-height: 1.25;
  margin-top: 24px;
}
.workflow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
}
.workflow-step {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 650;
}
.workflow-icon {
  display: grid;
  place-items: center;
  width: 65px;
  height: 60px;
  border-radius: 11px;
}
.workflow-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-lilac {
  background: var(--lilac);
  color: #7441c4;
}
.icon-peach {
  background: var(--peach);
  color: #a95b29;
}
.icon-mint {
  background: var(--mint);
  color: #358250;
}
.workflow-arrow {
  margin-top: -22px;
  font-size: 1.25rem;
  color: #9b8caa;
}
.window-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  color: #83798d;
  border-top: 1px solid #eee9f2;
  padding-top: 16px;
}
.window-footer > span:last-child {
  margin-left: auto;
  font-size: 1rem;
}
.connected-dots {
  display: flex;
  padding-right: 5px;
}
.connected-dots i {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #d2bdf4;
  margin-right: -6px;
}
.connected-dots i:nth-child(2) {
  background: #e7d7f7;
}
.connected-dots i:nth-child(3) {
  background: #c6d6f3;
}
.floating-note {
  position: absolute;
  bottom: 36px;
  right: -22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 20px;
  background: #fff;
  border: 1px solid #e5dced;
  border-radius: 12px;
  box-shadow: 0 10px 32px #44246613;
  transform: rotate(4deg);
}
.note-check {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: #dff5e7;
  color: #3c7a51;
  border-radius: 50%;
  font-size: 1.1rem;
}
.floating-note strong,
.floating-note div > span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.floating-note div > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.note-spark {
  font-size: 2.3rem;
  color: #b698e8;
  line-height: 1;
  margin-left: 12px;
}
.visual-caption {
  position: absolute;
  bottom: -12px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8f7ca3;
  font-size: 0.7rem;
  transform: rotate(-3deg);
}
.caption-line {
  width: 25px;
  height: 1px;
  background: #b6a2cf;
}
.focus-strip {
  border-block: 1px solid var(--line);
}
.focus-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 112px;
  padding-block: 22px;
}
.focus-inner > p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.focus-inner > p strong {
  font-weight: 600;
  color: var(--ink);
}
.focus-inner > span:not(.strip-star) {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.strip-star {
  font-size: 1.5rem;
  color: #b09acb;
}
.section {
  padding-block: 104px;
}
.section-heading {
  max-width: 710px;
  margin-inline: auto;
  text-align: center;
}
.section-heading > .eyebrow {
  justify-content: center;
}
.section-heading h2,
h2 {
  font-size: clamp(2.15rem, 3.5vw, 3rem);
  letter-spacing: -0.047em;
  line-height: 1.18;
  font-weight: 600;
}
.section-heading h2 {
  margin-top: 17px;
}
.section-heading > p:last-child {
  max-width: 565px;
  margin: 23px auto 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}
.text-purple {
  color: var(--purple);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 62px;
}
.expertise-item {
  position: relative;
}
.expertise-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin-bottom: 25px;
}
.expertise-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.item-number {
  position: absolute;
  right: 0;
  top: 18px;
  color: #82778e;
  font-size: 0.75rem;
}
.expertise-item h3 {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  font-weight: 650;
}
.expertise-item p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 13px;
}
.product-section {
  background: var(--surface);
  border-block: 1px solid #eeeaf4;
}
.product-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 43px;
}
.product-intro h2 {
  margin-top: 17px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.product-intro > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 365px;
  padding-bottom: 3px;
}
.product-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  align-items: center;
  gap: 44px;
  background: #e9e0f9;
  border-radius: var(--radius);
  padding: 44px;
  overflow: hidden;
}
.product-logo {
  width: 148px;
  margin-bottom: 28px;
}
.showcase-copy h3 {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.showcase-copy > p {
  max-width: 340px;
  margin-top: 18px;
  color: #655b74;
  line-height: 1.75;
  font-size: 1rem;
}
.benefit-list {
  list-style: none;
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.5;
}
.benefit-list li {
  display: flex;
  gap: 10px;
}
.benefit-list li::before {
  content: "✓";
  color: #7645b1;
}
.product-screen {
  width: calc(100% + 98px);
  min-width: 0;
  transform: rotate(-2deg);
  background: white;
  border: 1px solid #ccc2db;
  border-radius: 12px;
  box-shadow: 0 16px 30px #62458922;
  overflow: hidden;
}
.screen-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 17px;
  font-size: 0.75rem;
  color: #776b86;
  border-bottom: 1px solid var(--line);
}
.product-screen > img {
  width: 100%;
}
.product-screen figcaption {
  padding: 13px 17px;
  font-size: 0.75rem;
  color: #7f718d;
  background: #fff;
}
.screen-symbol {
  font-size: 1.2rem;
}
.product-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 27px;
}
.product-details > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.product-details strong {
  color: var(--ink);
  font-weight: 650;
}
.product-details > .text-link {
  font-size: 0.875rem;
  flex-shrink: 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
}
.approach-intro h2 {
  margin-top: 18px;
}
.approach-intro > p:not(.eyebrow) {
  max-width: 365px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}
.approach-intro > .text-link {
  margin-top: 28px;
}
.approach-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-content: center;
}
.approach-steps > li {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.approach-steps > li:first-child {
  padding-top: 0;
}
.approach-steps > li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  font-size: 0.75rem;
  color: var(--purple);
  background: #f1eafb;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.approach-steps h3 {
  font-size: 1.1875rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.6;
}
.approach-steps p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 8px;
}
.contact-section {
  background: #e9dffb;
  padding: 76px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 70px;
}
.contact-inner h2 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1.12;
  margin-top: 18px;
}
.contact-inner h2 span {
  color: var(--purple);
}
.contact-inner p:not(.eyebrow) {
  color: #685a7b;
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 23px;
}
.contact-inner .button {
  margin-top: 27px;
}
.contact-phone {
  display: block;
  width: fit-content;
  margin-top: 16px;
  color: #6c5b80;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.contact-phone:hover {
  text-decoration: underline;
}
.contact-monogram {
  text-align: center;
  user-select: none;
}
.contact-monogram > img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-inline: auto;
}
.contact-monogram > small {
  display: block;
  margin-top: 17px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: 550;
  color: #8a70aa;
}
.site-footer {
  padding-top: 65px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.3fr;
  gap: 44px;
  padding-bottom: 55px;
}
.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  min-width: 0;
}
.footer-links > strong {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 8px 0 5px;
}
.footer-links > a {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.footer-links > a:hover {
  color: var(--purple);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: #7b7483;
  font-size: 0.75rem;
  line-height: 1.6;
}
.footer-bottom > a {
  font-size: 1.1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.faq-grid h2 {
  margin-top: 18px;
}
.faq-intro {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 365px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-block: 23px;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.6;
  min-height: 44px;
  padding: 9px 35px 9px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 6px;
  font-size: 1.3rem;
  color: var(--purple);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list summary:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
.faq-list details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.faq-list details a {
  color: var(--purple-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro {
    max-width: 600px;
  }
}
@media (min-width: 1450px) {
  .hero-grid {
    gap: 78px;
  }
  .hero-visual {
    padding-inline: 3px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .navigation {
    gap: 20px;
  }
  .brand-logo {
    width: 150px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 4.3rem;
  }
  .hero-visual {
    min-height: 420px;
  }
  .window-content {
    padding: 22px;
  }
  .window-title {
    font-size: 1.5rem;
  }
  .floating-note {
    right: -10px;
    padding: 14px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-actions > .button {
    gap: 16px;
    padding-inline: 18px;
  }
  .focus-inner {
    gap: 16px;
  }
  .focus-inner > span:not(.strip-star) {
    font-size: 0.8125rem;
  }
  .expertise-grid {
    gap: 34px;
  }
  .product-showcase {
    padding: 32px;
    gap: 25px;
  }
  .showcase-copy h3 {
    font-size: 1.85rem;
  }
  .product-details {
    align-items: flex-start;
  }
  .product-details > p {
    max-width: 440px;
  }
  .product-details > .text-link {
    max-width: 230px;
    flex-shrink: 1;
  }
  .approach-grid {
    gap: 60px;
  }
  .footer-main {
    gap: 28px;
    grid-template-columns: 1fr 0.8fr 0.85fr 1.25fr;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 95px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
  }
  .menu-lines {
    width: 18px;
    height: 12px;
    border-block: 1.5px solid var(--ink);
    position: relative;
  }
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    border-top: 1.5px solid var(--ink);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    border: 0;
    transform: rotate(45deg);
    height: 2px;
    background: var(--ink);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(90deg);
  }
  .navigation {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
  }
  .navigation > a:not(.button) {
    padding: 13px 5px;
  }
  .navigation > .button {
    margin-top: 10px;
  }
  .js .navigation {
    display: none;
  }
  .js .navigation.is-open {
    display: flex;
  }
  .hero-grid {
    padding-block: 50px 65px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .hero-copy > .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.09em;
  }
  .hero-description {
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-note {
    font-size: 0.6875rem;
  }
  .hero-visual {
    min-height: 360px;
    padding-bottom: 50px;
  }
  .window-bar {
    padding: 12px;
  }
  .window-bar > span:nth-child(2) {
    font-size: 0.625rem;
  }
  .window-content {
    padding: 17px;
  }
  .product-window-heading img {
    width: 106px;
  }
  .live-pill {
    font-size: 0.5rem;
    padding: 5px 6px;
  }
  .window-title {
    font-size: 1.25rem;
  }
  .workflow {
    gap: 5px;
    margin-block: 22px;
  }
  .workflow-step {
    font-size: 0.625rem;
  }
  .workflow-icon {
    width: 47px;
    height: 45px;
  }
  .workflow-icon svg {
    width: 23px;
    height: 23px;
  }
  .window-footer {
    font-size: 0.5625rem;
    gap: 5px;
  }
  .floating-note {
    right: -6px;
    bottom: 24px;
    padding: 12px;
    gap: 9px;
  }
  .note-spark {
    display: none;
  }
  .floating-note strong {
    font-size: 0.6875rem;
  }
  .floating-note div > span {
    font-size: 0.625rem;
  }
  .note-check {
    width: 28px;
    height: 28px;
  }
  .visual-caption {
    font-size: 0.625rem;
    left: 4px;
    bottom: -3px;
  }
  .focus-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    padding-block: 25px;
  }
  .focus-inner > p {
    width: 100%;
    text-align: center;
    border: 0;
    padding: 0;
  }
  .focus-inner > p > br {
    display: none;
  }
  .focus-inner > p > strong {
    margin-left: 4px;
  }
  .strip-star {
    font-size: 1rem;
  }
  .section {
    padding-block: 75px;
  }
  .expertise-grid {
    gap: 26px;
    margin-top: 42px;
  }
  .expertise-item h3 {
    font-size: 1.0625rem;
  }
  .expertise-item p {
    font-size: 0.9375rem;
  }
  .product-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-intro > p {
    max-width: 600px;
  }
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 35px;
  }
  .showcase-copy {
    max-width: 100%;
  }
  .showcase-copy h3 {
    font-size: 2rem;
  }
  .showcase-copy > p {
    max-width: 490px;
  }
  .product-screen {
    width: 100%;
    transform: none;
  }
  .benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .product-details {
    flex-direction: column;
    gap: 18px;
  }
  .product-details > p,
  .product-details > .text-link {
    max-width: none;
  }
  .approach-grid {
    gap: 38px;
    grid-template-columns: 1fr 1.1fr;
  }
  .approach-steps > li {
    gap: 14px;
    padding-block: 24px;
  }
  .approach-steps h3 {
    font-size: 1.0625rem;
  }
  .approach-steps p {
    font-size: 0.9375rem;
  }
  .contact-inner {
    gap: 30px;
    grid-template-columns: 1.4fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-bottom {
    font-size: 0.6875rem;
  }
}
@media (max-width: 600px) {
  .announcement {
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.6875rem;
  }
  .announcement-label::after {
    content: " ·";
  }
  .announcement a {
    gap: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 43px 53px;
  }
  .hero h1 {
    font-size: clamp(3.65rem, 13vw, 5.2rem);
    line-height: 1.06;
    margin-top: 19px;
  }
  .hero-copy > .eyebrow {
    font-size: 0.625rem;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 420px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-actions > .button {
    font-size: 0.875rem;
    min-height: 50px;
  }
  .hero-actions > .text-link {
    font-size: 0.875rem;
    gap: 8px;
  }
  .hero-note {
    font-size: 0.6875rem;
    margin-top: 18px;
  }
  .hero-visual {
    width: calc(100% - 22px);
    max-width: 415px;
    min-height: 350px;
    margin: 0 auto;
    padding: 12px 3px 41px;
  }
  .visual-orbit {
    inset: 10px -20px 0 10px;
  }
  .orbit-two {
    inset: 40px -10px -10px 35px;
  }
  .window-content {
    padding: 22px;
  }
  .window-bar {
    padding: 13px 17px;
  }
  .window-bar > span:nth-child(2) {
    font-size: 0.6875rem;
  }
  .product-window-heading img {
    width: 125px;
  }
  .live-pill {
    font-size: 0.5625rem;
  }
  .window-title {
    font-size: 1.45rem;
  }
  .workflow-step {
    font-size: 0.75rem;
  }
  .workflow-icon {
    width: 60px;
    height: 55px;
  }
  .window-footer {
    font-size: 0.625rem;
  }
  .floating-note {
    right: -9px;
    bottom: 8px;
    padding: 13px 16px;
  }
  .floating-note strong {
    font-size: 0.75rem;
  }
  .floating-note div > span {
    font-size: 0.6875rem;
  }
  .note-check {
    width: 31px;
    height: 31px;
  }
  .visual-caption {
    display: none;
  }
  .focus-inner {
    gap: 14px 12px;
  }
  .focus-inner > span:not(.strip-star) {
    font-size: 0.75rem;
  }
  .focus-inner > span:last-child {
    width: 100%;
    text-align: center;
  }
  .focus-inner > .strip-star:nth-last-child(2) {
    display: none;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading h2,
  h2 {
    font-size: 2.2rem;
  }
  .section-heading h2 > br {
    display: none;
  }
  .section-heading > p:last-child {
    font-size: 0.9375rem;
    margin-top: 19px;
  }
  .eyebrow {
    font-size: 0.6875rem;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 37px;
  }
  .expertise-item {
    border-top: 1px solid var(--line);
    padding: 27px 0 0 77px;
    min-height: 122px;
  }
  .expertise-icon {
    position: absolute;
    top: 28px;
    left: 0;
    width: 54px;
    height: 54px;
  }
  .item-number {
    display: none;
  }
  .expertise-item h3 {
    font-size: 1.1875rem;
  }
  .expertise-item p {
    margin-top: 9px;
    line-height: 1.75;
  }
  .product-intro h2 {
    font-size: 2.1rem;
  }
  .product-intro h2 > br {
    display: none;
  }
  .product-intro {
    margin-bottom: 28px;
  }
  .product-showcase {
    padding: 26px 23px;
    gap: 32px;
    border-radius: 14px;
  }
  .product-logo {
    width: 140px;
    margin-bottom: 23px;
  }
  .showcase-copy h3 {
    font-size: 1.8rem;
  }
  .showcase-copy > p {
    font-size: 0.9375rem;
  }
  .benefit-list {
    grid-template-columns: 1fr;
    font-size: 0.8125rem;
  }
  .product-screen {
    width: 100%;
    border-radius: 6px;
  }
  .screen-topline {
    font-size: 0.5625rem;
    padding: 10px;
  }
  .screen-topline .window-dots i {
    width: 5px;
    height: 5px;
  }
  .product-screen figcaption {
    font-size: 0.625rem;
    padding: 10px;
  }
  .product-details > p,
  .product-details > .text-link {
    font-size: 0.8125rem;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach-intro h2 > br:nth-child(2) {
    display: none;
  }
  .approach-intro > p:not(.eyebrow) {
    max-width: none;
  }
  .approach-steps > li {
    gap: 18px;
  }
  .approach-steps h3 {
    font-size: 1.125rem;
  }
  .approach-steps p {
    font-size: 0.9375rem;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-inner h2 {
    font-size: 2.9rem;
  }
  .contact-inner p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .contact-inner p:not(.eyebrow) > br {
    display: none;
  }
  .contact-monogram {
    display: none;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-main {
    gap: 32px 25px;
    padding-bottom: 35px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-brand > p {
    font-size: 0.8125rem;
    margin-top: 15px;
  }
  .footer-brand > p > br {
    display: none;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom > span:first-child {
    width: calc(100% - 46px);
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-links {
    font-size: 0.8125rem;
  }
  .footer-links > strong {
    margin-top: 0;
  }
}
@media (max-width: 360px) {
  .hero-visual {
    width: 100%;
  }
  .window-content {
    padding: 16px;
  }
  .workflow {
    gap: 4px;
  }
  .workflow-icon {
    width: 52px;
    height: 48px;
  }
  .workflow-arrow {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
