@font-face {
  font-family: "Noto Sans Arabic";
  src: url("assets/NotoSansArabic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #09231f;
  --ink-soft: #36544e;
  --muted: #6e8781;
  --forest: #073c35;
  --forest-deep: #032e29;
  --teal: #0c8077;
  --teal-dark: #096c64;
  --mint: #29c9bb;
  --mint-pale: #d8f5ef;
  --blue: #4285db;
  --paper: #f8fbfa;
  --surface: #ffffff;
  --surface-soft: #f0f7f5;
  --line: #dce9e6;
  --line-strong: #c5d9d5;
  --danger: #d7514b;
  --shadow-sm: 0 10px 30px rgba(4, 46, 41, 0.08);
  --shadow-md: 0 24px 70px rgba(4, 46, 41, 0.13);
  --shadow-lg: 0 36px 100px rgba(4, 46, 41, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans Arabic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[dir="ltr"] {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

img,
svg {
  display: block;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  inset-inline-start: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: white;
  background: var(--forest);
  border-radius: 10px;
}

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

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

.section-pad {
  padding: 118px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(197, 217, 213, 0.65);
  background: rgba(248, 251, 250, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  direction: ltr;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(3, 46, 41, 0.15);
  border-radius: 13px;
  color: white;
  background: linear-gradient(150deg, var(--teal), #27b9ad);
  box-shadow: 0 9px 22px rgba(12, 128, 119, 0.22);
}

.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.brand-mark .spark {
  fill: white;
}

.brand-copy {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy b {
  font-weight: 800;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}

.main-menu a {
  padding: 9px 13px;
  color: var(--ink-soft);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.main-menu a:hover,
.main-menu a:focus-visible {
  color: var(--teal-dark);
  background: var(--mint-pale);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 10px;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.language-button:hover {
  background: var(--surface-soft);
}

.language-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(41, 201, 187, 0.33);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[dir="rtl"] .button svg {
  transform: scaleX(-1);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 11px;
  font-size: 13px;
}

.button-primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 9px 22px rgba(12, 128, 119, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(12, 128, 119, 0.25);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: var(--teal);
  background: white;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: 8px;
  line-height: 1;
  padding-inline-start: 1px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 98px;
  background:
    radial-gradient(circle at 90% 4%, rgba(41, 201, 187, 0.16), transparent 29%),
    radial-gradient(circle at 15% 88%, rgba(12, 128, 119, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfdfd 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(41, 201, 187, 0.14);
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 850;
  line-height: 1.13;
  letter-spacing: -0.05em;
}

body[dir="rtl"] .hero h1 {
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: block;
  color: var(--teal);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 40px 0 55px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(7, 60, 53, 0.16);
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.product-window-main {
  transform: perspective(1400px) rotateY(2deg) rotateX(0.8deg);
}

[dir="ltr"] .product-window-main {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0.8deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 13px;
  direction: ltr;
  border-bottom: 1px solid var(--line);
  background: #f9fbfb;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6d5d2;
}

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

.browser-bar > span:nth-child(2) {
  background: #edc76d;
}

.browser-bar > span:nth-child(3) {
  background: #72c799;
}

.browser-address {
  width: 35%;
  min-width: 140px;
  margin: 0 auto;
  padding: 4px 12px;
  color: #78908b;
  background: #eef3f2;
  border-radius: 8px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  text-align: center;
}

.product-window img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 210px;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(197, 217, 213, 0.9);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-card-one {
  inset-inline-start: -34px;
  bottom: 2px;
}

.floating-card-two {
  inset-inline-end: -28px;
  top: 0;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card b {
  font-size: 13px;
}

.floating-card small {
  color: var(--muted);
  font-size: 10px;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 12px;
}

.metric-icon.mint {
  color: var(--teal);
  background: var(--mint-pale);
}

.metric-icon.blue {
  color: #3377c6;
  background: #e8f1fd;
}

.metric-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(12, 128, 119, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -330px;
  inset-inline-end: -190px;
  width: 670px;
  height: 670px;
}

.hero-orbit-two {
  bottom: -270px;
  inset-inline-start: -250px;
  width: 540px;
  height: 540px;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: white;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}

.signal-grid > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.signal-grid span {
  color: var(--teal);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.signal-grid b {
  font-size: 15px;
}

.signal-grid i {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

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

.section-heading h2,
.workflow-copy h2,
.cloud-copy h2,
.ai-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 830;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

body[dir="rtl"] .section-heading h2,
body[dir="rtl"] .workflow-copy h2,
body[dir="rtl"] .cloud-copy h2,
body[dir="rtl"] .ai-copy h2,
body[dir="rtl"] .contact-copy h2 {
  letter-spacing: -0.025em;
}

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

.split-heading > p,
.centered > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

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

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

.centered > p {
  margin-top: 18px;
}

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

.feature-card {
  position: relative;
  min-height: 286px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.feature-card-wide {
  grid-column: span 1;
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.feature-card-wide::after {
  position: absolute;
  content: "";
  width: 190px;
  height: 190px;
  inset-inline-end: -80px;
  bottom: -100px;
  border: 1px solid rgba(41, 201, 187, 0.28);
  border-radius: 50%;
}

.feature-card-accent {
  background: linear-gradient(145deg, #edf9f6, #fff);
  border-color: #bfe5df;
}

.feature-number {
  position: absolute;
  top: 24px;
  inset-inline-end: 26px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
}

.feature-card-wide .feature-number {
  color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal);
  background: var(--mint-pale);
  border-radius: 14px;
}

.feature-card-wide .feature-icon {
  color: var(--forest);
  background: var(--mint);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 35px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.feature-card-wide p {
  color: rgba(255, 255, 255, 0.7);
}

.card-tag {
  position: absolute;
  inset-inline-end: 26px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.clinical-section {
  background: var(--surface-soft);
}

.showcase {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fbfdfc;
}

.showcase-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 78px;
  color: var(--muted);
  border: 0;
  border-inline-end: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.showcase-tab:last-child {
  border-inline-end: 0;
}

.showcase-tab::after {
  position: absolute;
  content: "";
  inset-inline: 22px;
  bottom: -1px;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
}

.showcase-tab.active {
  color: var(--teal-dark);
  background: white;
}

.showcase-tab.active::after {
  background: var(--teal);
}

.showcase-tab span {
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.showcase-tab b {
  font-size: 15px;
}

.showcase-stage {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  align-items: center;
  min-height: 610px;
}

.showcase-copy {
  padding: 46px;
}

.showcase-label,
.workflow-index {
  color: var(--teal);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.showcase-copy h3 {
  margin: 26px 0 14px;
  font-size: 32px;
  line-height: 1.35;
}

.showcase-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.showcase-screen {
  padding: 30px 30px 30px 0;
}

[dir="ltr"] .showcase-screen {
  padding: 30px 0 30px 30px;
}

.showcase-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #f6f9f8;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: opacity 180ms ease, transform 320ms ease;
}

.showcase-screen img.changing {
  opacity: 0.2;
  transform: scale(0.992);
}

.cloud-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 14% 12%, rgba(41, 201, 187, 0.15), transparent 32%),
    linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.cloud-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.kicker-light {
  color: var(--mint);
}

.cloud-copy > p:not(.kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.9;
}

.cloud-points {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.cloud-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.cloud-points li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 13px;
}

.cloud-points svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloud-points b {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.cloud-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.cloud-visual {
  position: relative;
}

.login-frame {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 25px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
  transform: perspective(1400px) rotateY(-3deg);
}

[dir="ltr"] .login-frame {
  transform: perspective(1400px) rotateY(3deg);
}

.login-frame img {
  width: 100%;
  border-radius: 16px;
}

.cloud-badge {
  position: absolute;
  inset-inline-end: -24px;
  bottom: -30px;
  display: flex;
  align-items: center;
  min-width: 240px;
  gap: 13px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.cloud-badge svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cloud-badge span {
  display: flex;
  flex-direction: column;
}

.cloud-badge b {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}

.cloud-badge small {
  color: rgba(9, 35, 31, 0.65);
  font-size: 10px;
}

.cloud-graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
}

.cloud-graphic span {
  position: absolute;
  border: 1px solid var(--mint);
  border-radius: 50%;
}

.cloud-graphic span:first-child {
  width: 420px;
  height: 420px;
  inset-inline-start: -220px;
  top: -110px;
}

.cloud-graphic span:nth-child(2) {
  width: 620px;
  height: 620px;
  inset-inline-end: -380px;
  bottom: -370px;
}

.cloud-graphic span:nth-child(3) {
  width: 190px;
  height: 190px;
  inset-inline-end: 18%;
  top: 15%;
}

.video-section {
  background: white;
}

.video-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #031d1a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.video-caption i {
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}

.workflow-section {
  background: var(--surface-soft);
}

.workflow-stack {
  display: grid;
  gap: 110px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 75px;
}

.workflow-row-reverse .workflow-media {
  order: 2;
}

.workflow-media {
  padding: 9px;
  border: 1px solid var(--line-strong);
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.workflow-media img {
  width: 100%;
  border-radius: 16px;
}

.workflow-copy h2 {
  margin-top: 20px;
}

.workflow-copy > p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.workflow-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.workflow-copy li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 14px;
  font-weight: 650;
}

.workflow-copy li::before {
  position: absolute;
  content: "";
  top: 0.72em;
  inset-inline-start: 0;
  width: 15px;
  height: 2px;
  background: var(--mint);
}

.ai-section {
  background: white;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 80px;
}

.ai-symbol {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--teal);
  background: var(--mint-pale);
  border-radius: 17px;
}

.ai-symbol svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-copy > p:not(.kicker) {
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.ai-actions {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-block: 1px solid var(--line);
}

.ai-actions div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: baseline;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.ai-actions div:last-child {
  border-bottom: 0;
}

.ai-actions b {
  color: var(--teal-dark);
  font-size: 14px;
}

.ai-actions span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.ai-media {
  padding: 9px;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.ai-media img {
  width: 100%;
  border-radius: 17px;
}

.contact-section {
  padding-top: 40px;
  background: white;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 65px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(41, 201, 187, 0.13), transparent 26%),
    linear-gradient(140deg, var(--forest-deep), var(--forest));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-card::before,
.contact-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(41, 201, 187, 0.15);
  border-radius: 50%;
}

.contact-card::before {
  width: 320px;
  height: 320px;
  inset-inline-start: -190px;
  bottom: -180px;
}

.contact-card::after {
  width: 240px;
  height: 240px;
  inset-inline-end: -130px;
  top: -140px;
}

.contact-copy,
.demo-form {
  position: relative;
  z-index: 2;
}

.contact-copy > p:not(.kicker) {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.contact-note svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.direct-contact-link:hover {
  color: white;
  border-color: rgba(77, 227, 210, 0.46);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.direct-contact-link > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 13px;
}

.direct-contact-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact-link > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.direct-contact-link small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 650;
}

.direct-contact-link b {
  overflow-wrap: anywhere;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 720;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.demo-form label {
  display: grid;
  gap: 7px;
}

.demo-form label > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.demo-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  outline: none;
  background: #fbfdfc;
  border-radius: 12px;
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.demo-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 128, 119, 0.1);
}

.demo-form input::placeholder {
  color: #9baea9;
}

.button-mint {
  width: 100%;
  margin-top: 3px;
  color: var(--ink);
  background: var(--mint);
}

.button-mint:hover {
  background: #42d4c7;
}

.form-help {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.75);
  background: #021f1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.7fr 1fr;
  gap: 65px;
  padding-bottom: 60px;
}

.brand-footer {
  color: white;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.8;
}

.footer-contact-list {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.footer-contact-list a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
}

.footer-contact-list a:hover {
  color: var(--mint);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 12px;
}

.footer-grid > div:not(.footer-brand):not(.footer-cloud) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div > a:not(.brand) {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-grid > div > a:hover {
  color: var(--mint);
}

.footer-cloud {
  align-self: start;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 4px 12px;
  padding: 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.footer-cloud > span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 13px;
}

.footer-cloud svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-cloud b {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}

.footer-cloud small {
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
}

.footer-bottom a:hover {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-menu {
    gap: 0;
  }

  .main-menu a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 42px;
  }

  .floating-card-one {
    inset-inline-start: -10px;
  }

  .floating-card-two {
    inset-inline-end: -10px;
  }

  .showcase-stage {
    grid-template-columns: 0.38fr 0.62fr;
  }

  .showcase-copy {
    padding: 34px;
  }

  .contact-card {
    gap: 40px;
    padding: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section-pad {
    padding: 88px 0;
  }

  .menu-button {
    display: block;
    margin-inline-start: auto;
  }

  .nav-actions .button-small {
    display: none;
  }

  .main-menu {
    position: absolute;
    top: 64px;
    inset-inline: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu a {
    padding: 12px 14px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid,
  .split-heading,
  .cloud-grid,
  .workflow-row,
  .ai-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    padding-top: 10px;
  }

  .product-window-main,
  [dir="ltr"] .product-window-main {
    transform: none;
  }

  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-grid i {
    display: none;
  }

  .signal-grid > div {
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
  }

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

  .split-heading {
    gap: 20px;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding-bottom: 10px;
  }

  .showcase-screen,
  [dir="ltr"] .showcase-screen {
    padding: 28px;
  }

  .cloud-grid {
    gap: 60px;
  }

  .login-frame,
  [dir="ltr"] .login-frame {
    transform: none;
  }

  .workflow-row {
    gap: 45px;
  }

  .workflow-row-reverse .workflow-media {
    order: 0;
  }

  .ai-grid {
    gap: 55px;
  }

  .contact-card {
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-cloud {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 64px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy {
    font-size: 16px;
  }

  .language-button {
    padding-inline: 8px;
  }

  .hero {
    min-height: 0;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    display: grid;
  }

  .browser-bar {
    height: 29px;
  }

  .browser-address {
    min-width: 90px;
    font-size: 7px;
  }

  .floating-card {
    display: none;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .signal-grid > div {
    flex-direction: row;
    padding: 7px 0;
  }

  .section-heading h2,
  .workflow-copy h2,
  .cloud-copy h2,
  .ai-copy h2,
  .contact-copy h2 {
    font-size: 35px;
  }

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

  .feature-card {
    min-height: 260px;
  }

  .showcase-tabs {
    grid-template-columns: 1fr;
  }

  .showcase-tab {
    justify-content: flex-start;
    min-height: 58px;
    padding-inline: 20px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-tab::after {
    inset-inline: 20px auto;
    width: 80px;
  }

  .showcase-copy {
    padding: 30px 24px 8px;
  }

  .showcase-copy h3 {
    font-size: 27px;
  }

  .showcase-screen,
  [dir="ltr"] .showcase-screen {
    padding: 20px;
  }

  .cloud-badge {
    position: relative;
    inset: auto;
    width: 90%;
    margin: -28px auto 0;
  }

  .video-caption {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 16px;
  }

  .workflow-stack {
    gap: 80px;
  }

  .workflow-row {
    gap: 32px;
  }

  .ai-actions div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-card {
    width: calc(100% - 16px);
    padding: 34px 20px;
    border-radius: 28px;
  }

  .demo-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cloud {
    width: 100%;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
