:root {
  color-scheme: light;
  --ink: #10201b;
  --deep-ink: #091510;
  --paper: #f3efe5;
  --white: #fffdf8;
  --green: #2f6752;
  --green-soft: #d7e2d8;
  --brass: #b88a45;
  --clay: #a95f47;
  --muted: #607069;
  --line: rgba(16, 32, 27, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
  --display: "DM Serif Display", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
  --arabic: "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
  --max: 1280px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 4vw, 64px);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(9, 21, 16, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: var(--ink);
}

.brand-mark-line {
  fill: none;
  stroke: var(--paper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .brand small {
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.language-toggle {
  font-family: var(--arabic);
  font-size: 12px;
  font-weight: 600;
}

.menu-button {
  display: none;
  place-items: center;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 3px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  padding: 32px 24px;
  background: var(--paper);
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 32px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

html[dir="rtl"] .mobile-nav a:not(.button) {
  font-family: var(--arabic);
}

.mobile-nav .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

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

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

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--ink);
}

.button-paper {
  color: var(--ink);
  background: var(--paper);
}

.button-paper:hover {
  color: var(--white);
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow.light {
  color: #c9b894;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] h2 {
  font-family: var(--arabic);
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--green);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.assistant-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 690px;
  padding: 44px 30px 24px;
  overflow: hidden;
  background: var(--green-soft);
  border-radius: 46% 46% 28px 28px / 28% 28% 28px 28px;
}

.stage-orbit {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(47, 103, 82, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  border: 1px solid rgba(47, 103, 82, 0.15);
  border-radius: 50%;
  content: "";
}

.stage-orbit::before {
  inset: 11%;
}

.stage-orbit::after {
  inset: 24%;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 378px);
  min-height: 612px;
  overflow: hidden;
  background: #f7f5ef;
  border: 8px solid var(--deep-ink);
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(9, 21, 16, 0.22);
}

.phone-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 22px 18px 14px;
  color: var(--white);
  background: var(--ink);
}

.assistant-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-family: var(--arabic);
  font-size: 17px;
  background: var(--green);
  border-radius: 50%;
}

.phone-top div:nth-child(2) {
  display: grid;
}

.phone-top strong {
  font-size: 13px;
}

.phone-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.secure-dot {
  width: 8px;
  height: 8px;
  background: #89c59e;
  border: 2px solid rgba(137, 197, 158, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(137, 197, 158, 0.13);
}

.chat {
  min-height: 474px;
  padding: 18px 14px 12px;
  background:
    radial-gradient(circle at 1px 1px, rgba(16, 32, 27, 0.05) 1px, transparent 0) 0 0 / 18px 18px,
    #ece8de;
}

.chat-date {
  width: fit-content;
  margin: 0 auto 15px;
  padding: 4px 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 253, 248, 0.78);
  border-radius: 999px;
}

.bubble {
  max-width: 88%;
  margin-bottom: 10px;
  padding: 10px 12px;
  font-size: 10px;
  line-height: 1.5;
  border-radius: 12px;
}

.bubble-user {
  margin-left: auto;
  font-family: var(--arabic);
  text-align: right;
  background: #d8eadb;
  border-bottom-right-radius: 3px;
}

html[dir="rtl"] .bubble-user {
  margin-right: auto;
  margin-left: 0;
}

.bubble-assistant {
  background: var(--white);
  border-bottom-left-radius: 3px;
}

.bubble.short {
  max-width: 90px;
}

.brief-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  max-width: 90%;
  margin: 8px 0 10px;
  padding: 12px;
  background: var(--white);
  border-left: 3px solid var(--clay);
  border-radius: 4px 12px 12px 4px;
}

.brief-number {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  background: var(--clay);
  border-radius: 50%;
}

.brief-card div {
  display: grid;
}

.brief-card small {
  color: var(--clay);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-card strong {
  margin: 2px 0;
  font-size: 10px;
}

.brief-card p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.approval-row {
  display: flex;
  gap: 7px;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
  color: var(--green);
  font-size: 7.5px;
  font-weight: 700;
  background: rgba(215, 226, 216, 0.86);
  border-radius: 999px;
}

.approval-shield {
  display: inline-flex;
}

.approval-shield svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.composer {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 8px 0 14px;
  color: var(--muted);
  font-size: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.composer i {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
}

.stage-caption {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px clamp(24px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.trust-strip p {
  margin: 0;
  color: #c9b894;
  font-family: var(--display);
  font-size: 18px;
}

html[dir="rtl"] .trust-strip p {
  font-family: var(--arabic);
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-strip li::before {
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
  content: "";
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 170px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-heading h2,
.privacy-copy h2,
.morning-copy h2,
.pricing-intro h2,
.request-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.pricing-intro > p:last-child,
.request-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading.compact {
  display: block;
  max-width: 800px;
}

.section-heading.compact .eyebrow {
  margin-bottom: 20px;
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 360px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.work-index {
  align-self: start;
  color: var(--brass);
  font-family: var(--display);
  font-size: 16px;
}

.work-body h3 {
  max-width: 660px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

html[dir="rtl"] .work-body h3 {
  font-family: var(--arabic);
  line-height: 1.45;
}

.work-body p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.capability {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 103, 82, 0.26);
  border-radius: 999px;
}

.work-visual {
  justify-self: end;
  width: min(100%, 360px);
}

.mail-stack {
  position: relative;
  height: 224px;
}

.mail-card {
  position: absolute;
  right: 0;
  left: 0;
  height: 164px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mail-back {
  top: 0;
  right: 42px;
  left: 42px;
  opacity: 0.45;
}

.mail-mid {
  top: 20px;
  right: 22px;
  left: 22px;
  opacity: 0.68;
}

.mail-front {
  top: 44px;
  box-shadow: 0 22px 42px rgba(9, 21, 16, 0.08);
}

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

.mail-card strong {
  display: block;
  margin: 20px 0 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.mail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.draft-visual {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 42px rgba(9, 21, 16, 0.06);
}

.draft-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 28px;
  padding: 5px;
  font-size: 8px;
  font-weight: 700;
  background: var(--paper);
  border-radius: 999px;
}

.draft-top span {
  padding: 4px 8px;
}

.draft-top span:first-child {
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.draft-top i {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.draft-visual > p {
  margin: 0 0 14px;
  font-family: var(--arabic);
  font-size: 13px;
  text-align: right;
}

.draft-line {
  width: 100%;
  height: 7px;
  background: #e8e4da;
  border-radius: 9px;
}

.draft-line.short-line {
  width: 74%;
  margin-left: auto;
}

.draft-lock {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 28px;
  padding-top: 14px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

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

.timeline-visual {
  display: grid;
  gap: 2px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.timeline-visual div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  font-size: 10px;
}

.timeline-visual div:not(:last-child)::after {
  position: absolute;
  top: 36px;
  bottom: -20px;
  left: 5px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-visual i {
  z-index: 1;
  width: 11px;
  height: 11px;
  background: var(--white);
  border: 2px solid #aeb8b3;
  border-radius: 50%;
}

.timeline-visual i.done {
  background: var(--green);
  border-color: var(--green);
}

.timeline-visual i.active {
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(184, 138, 69, 0.15);
}

.timeline-visual small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.morning-section {
  width: 100%;
  padding-right: clamp(24px, 4vw, 64px);
  padding-left: clamp(24px, 4vw, 64px);
  background: var(--ink);
}

.morning-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.morning-copy {
  color: var(--white);
}

.morning-copy h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.morning-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: rgba(255, 253, 248, 0.62);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}

.check-list li::before {
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.morning-brief {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.23);
}

.morning-brief::before {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.brief-header,
.brief-stat,
.brief-agenda,
.brief-ready {
  position: relative;
  z-index: 1;
}

.brief-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.brief-header div {
  display: grid;
}

.brief-header small {
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--arabic);
  font-size: 11px;
}

.brief-header strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.brief-header > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.brief-stat {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 34px 0;
}

.brief-stat strong {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.brief-stat span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.brief-agenda {
  border-top: 1px solid var(--line);
}

.brief-agenda div {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 14px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
}

.brief-agenda time {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.brief-agenda .priority span {
  color: var(--clay);
  font-weight: 700;
}

.brief-ready {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.brief-ready i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 103, 82, 0.12);
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.privacy-copy h2 {
  font-size: clamp(48px, 5.5vw, 78px);
}

.privacy-copy > p:not(.eyebrow) {
  margin: 28px 0 36px;
  color: var(--muted);
}

.privacy-points {
  display: grid;
  gap: 18px;
}

.privacy-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.point-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  border: 1px solid rgba(47, 103, 82, 0.3);
  border-radius: 50%;
}

.privacy-points p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.privacy-points strong {
  color: var(--ink);
}

.privacy-diagram {
  display: grid;
  justify-items: center;
  padding: 48px;
  background: var(--green-soft);
  border-radius: 24px;
}

.principal {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.principal-monogram {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  font-family: var(--arabic);
  font-size: 22px;
  background: var(--green);
  border: 6px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.principal small,
.connection span,
.not-shared p {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 92px;
}

.connection i {
  flex: 1;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--green) 0 4px, transparent 4px 8px);
}

.connection span {
  padding: 4px 9px;
  background: var(--green-soft);
}

.server {
  width: min(100%, 380px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 103, 82, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(47, 103, 82, 0.12);
}

.server-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.server-head > span {
  display: flex;
  gap: 4px;
}

.server-head i {
  width: 6px;
  height: 6px;
  background: #a8b5af;
  border-radius: 50%;
}

.server-head small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.server-core {
  display: grid;
  justify-items: center;
  padding: 32px 22px 38px;
  text-align: center;
}

.server-core svg {
  width: 58px;
  margin-bottom: 18px;
  fill: rgba(47, 103, 82, 0.08);
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.server-core strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.server-core span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.not-shared {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  padding: 8px 12px;
  color: var(--clay);
  background: rgba(169, 95, 71, 0.09);
  border-radius: 999px;
}

.not-shared span {
  font-weight: 700;
}

.not-shared p {
  margin: 0;
  color: var(--clay);
  font-size: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-height: 320px;
  padding: 36px;
  background: var(--paper);
}

.steps > li > span {
  color: var(--brass);
  font-family: var(--display);
  font-size: 15px;
}

.steps h3 {
  margin: 80px 0 18px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

html[dir="rtl"] .steps h3 {
  font-family: var(--arabic);
  line-height: 1.5;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--deep-ink);
}

.pricing-intro h2 {
  font-size: clamp(50px, 6vw, 84px);
}

.pricing-intro > p:last-child {
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.58);
}

.price-panel {
  padding: clamp(32px, 5vw, 60px);
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
}

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

.price-tier {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-panel-private {
  color: var(--white);
  background: #173128;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-panel-private .price-main,
.price-panel-private .price-setup {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-panel-private .price-main > span:last-child,
.price-panel-private .price-setup span,
.price-panel-private .vat-note {
  color: rgba(255, 255, 255, 0.62);
}

.price-panel-private li::before {
  background: var(--brass);
}

.price-panel-private .button {
  color: var(--ink);
  background: var(--paper);
}

.price-panel-private .button:hover {
  color: var(--white);
  background: var(--clay);
}

.price-main {
  display: flex;
  gap: 14px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price {
  display: inline-flex;
  gap: 8px;
  align-items: end;
  font-size: 12px;
  font-weight: 700;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(48px, 4.3vw, 70px);
  font-weight: 400;
  line-height: 0.8;
}

.price-main > span:last-child {
  color: var(--muted);
  font-size: 11px;
}

.price-setup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
}

.price-setup span {
  color: var(--muted);
}

.price-panel ul {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-panel li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}

.price-panel li::before {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.vat-note {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 9px;
}

.pricing-note {
  grid-column: 1 / -1;
  margin: 4px 4px 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.price-panel .button {
  width: 100%;
  color: var(--white);
  background: var(--green);
}

.price-panel .button:hover {
  background: var(--ink);
}

.questions-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

html[dir="rtl"] .faq-list summary {
  font-family: var(--arabic);
  line-height: 1.7;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.faq-list details p {
  max-width: 680px;
  margin: -2px 44px 28px 0;
  color: var(--muted);
  font-size: 13px;
}

html[dir="rtl"] .faq-list details p {
  margin-right: 0;
  margin-left: 44px;
}

.request-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
  padding: clamp(90px, 12vw, 160px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green);
}

.request-copy h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.request-copy > p {
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.7);
}

.request-contact {
  display: grid;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.request-contact span {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.request-contact span::before {
  width: 5px;
  height: 5px;
  background: #c9b894;
  border-radius: 50%;
  content: "";
}

.request-form {
  display: grid;
  gap: 20px;
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
}

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

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.request-form input:focus,
.request-form textarea:focus {
  background: var(--white);
  border-color: var(--green);
}

.request-form [aria-invalid="true"] {
  border-color: var(--clay);
}

.request-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.form-submit:hover {
  background: var(--green);
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--clay);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  color: var(--white);
  background: var(--deep-ink);
}

.footer-brand .brand-mark {
  fill: var(--paper);
}

.footer-brand .brand-mark-line {
  stroke: var(--ink);
}

.footer-brand small {
  color: rgba(255, 253, 248, 0.46);
}

.site-footer > p {
  grid-column: 1;
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 11px;
}

.site-footer nav {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: flex-end;
}

.site-footer nav a {
  color: rgba(255, 253, 248, 0.64);
}

.site-footer > small {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 22px;
  color: rgba(255, 253, 248, 0.4);
  font-size: 9px;
  border-top: 1px solid var(--line-light);
}

.focused-page,
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.focused-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
}

.checkout-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: center;
  width: min(calc(100% - 40px), 1120px);
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 70px 0;
}

.checkout-copy h1,
.legal-shell h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.checkout-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}

.checkout-trust {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.checkout-trust > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.checkout-trust i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 103, 82, 0.1);
}

.checkout-trust strong {
  color: var(--ink);
}

.order-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(9, 21, 16, 0.09);
}

.order-head,
.order-line,
.order-total {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.order-head {
  padding-bottom: 22px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.order-line {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.order-line > span {
  display: grid;
}

.order-line strong {
  font-size: 12px;
}

.order-line small {
  max-width: 270px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.order-total {
  align-items: end;
  padding: 26px 0;
}

.order-total span {
  color: var(--muted);
  font-size: 10px;
}

.order-total strong {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.order-card .button {
  width: 100%;
}

.order-note,
.payment-status {
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.payment-status {
  min-height: 18px;
  margin: 14px 0 0;
}

.payment-status.success {
  color: var(--green);
}

.payment-status.error {
  color: var(--clay);
}

.focused-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding: 20px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.legal-shell {
  width: min(calc(100% - 40px), 850px);
  margin: 0 auto;
  padding: 80px 0 120px;
}

.legal-updated {
  margin: 20px 0 36px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-callout {
  margin-bottom: 60px;
  padding: 20px 22px;
  color: #6f4b18;
  font-size: 11px;
  background: #eee3cf;
  border-left: 3px solid var(--brass);
}

.legal-shell section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.legal-shell section p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .work-body,
html[dir="rtl"] .privacy-copy,
html[dir="rtl"] .morning-copy,
html[dir="rtl"] .pricing-intro,
html[dir="rtl"] .request-copy,
html[dir="rtl"] .request-form {
  text-align: right;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

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

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

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

  .hero-facts div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 12px;
  }

  .section-heading,
  .privacy-section,
  .morning-card,
  .pricing-section,
  .questions-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .privacy-diagram,
  .morning-brief,
  .pricing-options,
  .request-form {
    width: min(100%, 680px);
  }

  .morning-brief,
  .pricing-options {
    justify-self: end;
  }

  .questions-section {
    gap: 30px;
  }

  .request-form {
    justify-self: end;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 20px;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--max));
    padding: 60px 0 64px;
  }

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

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

  .hero-facts div {
    display: block;
  }

  .assistant-stage {
    min-height: 650px;
  }

  .trust-strip {
    display: block;
  }

  .trust-strip ul {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding: 88px 0;
  }

  .work-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .work-visual {
    grid-column: 2;
    justify-self: start;
    margin-top: 16px;
  }

  .morning-section,
  .pricing-section {
    width: 100%;
    padding: 88px 24px;
  }

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

  .privacy-section {
    gap: 50px;
  }

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

  .steps li {
    min-height: auto;
  }

  .steps h3 {
    margin-top: 34px;
  }

  .request-section {
    padding: 88px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    grid-row: auto;
    grid-column: 1;
    justify-content: flex-start;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-actions {
    gap: 6px;
  }

  .language-toggle,
  .menu-button {
    min-width: 40px;
    min-height: 40px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(52px, 19vw, 74px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
  }

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

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

  .text-link {
    text-align: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 128px 1fr;
  }

  .assistant-stage {
    min-height: 0;
    padding: 28px 14px 20px;
    border-radius: 130px 130px 20px 20px;
  }

  .phone {
    min-height: 570px;
    border-width: 6px;
    border-radius: 30px;
  }

  .chat {
    min-height: 438px;
  }

  .trust-strip {
    padding: 26px 20px;
  }

  .trust-strip ul {
    display: grid;
    gap: 10px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .morning-copy h2,
  .pricing-intro h2,
  .request-copy h2 {
    font-size: 46px;
  }

  html[dir="rtl"] .section-heading h2,
  html[dir="rtl"] .privacy-copy h2,
  html[dir="rtl"] .morning-copy h2,
  html[dir="rtl"] .pricing-intro h2,
  html[dir="rtl"] .request-copy h2 {
    font-size: 40px;
  }

  .work-item {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .work-index,
  .work-visual {
    grid-column: 1;
  }

  .work-body h3 {
    font-size: 34px;
  }

  .morning-section,
  .pricing-section,
  .request-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .morning-brief,
  .pricing-options,
  .request-form {
    padding: 28px 22px;
  }

  .pricing-options {
    padding: 0;
  }

  .brief-stat strong,
  .price strong {
    font-size: 58px;
  }

  .privacy-diagram {
    padding: 36px 18px;
  }

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

  .faq-list summary {
    min-height: 76px;
    font-size: 20px;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .focused-header {
    min-height: 70px;
  }

  .checkout-shell {
    width: min(calc(100% - 28px), 1120px);
    padding: 48px 0;
  }

  .checkout-copy h1,
  .legal-shell h1 {
    font-size: 50px;
  }

  .order-card {
    padding: 26px 20px;
  }

  .order-total {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .legal-shell section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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

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