:root {
  --blue: #0867ff;
  --blue-dark: #0641c5;
  --navy: #071936;
  --ink: #111e38;
  --muted: #66738a;
  --line: #dbe6f4;
  --soft: #f4f8fe;
  --surface: #fff;
  --shell: min(1320px, calc(100vw - 48px));
  --shadow: 0 28px 70px rgba(13, 57, 126, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

html[lang="zh-TW"] body,
html[lang="ja"] body,
html[lang="ko"] body {
  font-family: "Manrope", "Noto Sans CJK TC", "Noto Sans CJK JP", "Noto Sans CJK KR", "Microsoft JhengHei", "Yu Gothic", "Malgun Gothic", sans-serif;
}

html[lang="ar"] body,
html[lang="ur"] body,
html[lang="fa"] body {
  font-family: "Manrope", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[lang="hi"] body,
html[lang="bn"] body {
  font-family: "Manrope", "Noto Sans Devanagari", "Noto Sans Bengali", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  border-radius: 10px;
  background: var(--blue-dark);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(210, 224, 242, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) 340px;
  gap: 0;
  align-items: center;
}

.brand {
  width: 156px;
}

.brand img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(8, max-content);
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-left: 36px;
  padding-right: 28px;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
  color: #536077;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease;
}

body:not([data-locale="en"]) .site-nav {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

body:not([data-locale="en"]) .site-nav a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding-block: 20px;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

body:not([data-locale="en"]) .nav-actions {
  gap: 8px;
}

.login-link {
  flex: 0 0 auto;
  color: #546177;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.login-link:hover {
  color: var(--blue);
}

.language-switch {
  position: relative;
}

.language-toggle {
  width: 132px;
  min-width: 132px;
  min-height: 44px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: #33425c;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #cfdef0;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.language-toggle > span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  color: var(--blue);
  border-color: #9dc2f8;
  box-shadow: 0 10px 30px rgba(22, 79, 158, 0.1);
}

.language-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(22, 45, 77, 0.12);
}

.language-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 0 0 2px;
  font-size: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease, margin 180ms ease;
}

.language-toggle[aria-expanded="true"] .language-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  width: 570px;
  max-height: min(640px, calc(100vh - 104px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 12px;
  border: 1px solid #dce6f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(15, 54, 112, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 8px 13px;
  border-bottom: 1px solid #dce6f3;
}

.language-menu-header strong {
  color: #1b2e49;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.language-menu-header span {
  color: #8693a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-options-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 9px 3px 2px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b8cce5 transparent;
  scrollbar-width: thin;
}

.language-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu .language-option {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 0 11px;
  color: #526077;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.language-menu .language-option:hover,
.language-menu .language-option.is-current {
  color: var(--blue);
  background: #eef5ff;
}

.language-menu .language-option:disabled {
  cursor: default;
  opacity: 0.72;
}

.language-menu .language-option[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.language-option-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(22, 45, 77, 0.12);
}

.language-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-menu small {
  color: #8c98aa;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0874ff, #0751e5);
  box-shadow: 0 14px 32px rgba(4, 87, 237, 0.25);
}

.button-primary:hover {
  box-shadow: 0 19px 40px rgba(4, 87, 237, 0.33);
}

.button-outline {
  color: var(--navy);
  border-color: #cbdced;
  background: rgba(255, 255, 255, 0.8);
}

.button-outline:hover {
  border-color: var(--blue);
  background: #fff;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 12px;
  border-radius: 13px;
}

body:not([data-locale="en"]) .nav-actions .button-small {
  padding-inline: 13px;
  font-size: 10px;
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  border-radius: 17px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: #edf5ff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 92px 0 82px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(24, 90, 190, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 90, 190, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 60px;
  right: -130px;
  width: 500px;
  height: 500px;
  background: rgba(42, 159, 255, 0.13);
  filter: blur(6px);
}

.hero-glow-two {
  bottom: -210px;
  left: -180px;
  width: 500px;
  height: 500px;
  background: rgba(36, 96, 255, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 76px;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 13px 6px 6px;
  color: #526077;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #d5e4f6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(21, 73, 147, 0.08);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  padding: 6px 10px;
  color: #fff;
  line-height: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, #0874ff, #0751e5);
}

.hero-badge strong {
  color: var(--blue-dark);
  font-size: inherit;
}

.hero h1,
.section-heading h2,
.plans-preview-copy h2,
.platform-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 640px;
  margin-top: 25px;
  font-size: clamp(56px, 5.2vw, 74px);
  overflow-wrap: anywhere;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, #0569ff 8%, #1da6ff 72%, #6874ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-copy > p {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #68768c;
  font-size: 11px;
  font-weight: 700;
}

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

.hero-meta b {
  font-weight: inherit;
}

.hero-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18c98d;
  box-shadow: 0 0 0 4px rgba(24, 201, 141, 0.12);
}

.hero-visual {
  position: relative;
  padding: 0;
}

.hero-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(147, 178, 221, 0.55);
  border-radius: 38px;
  background: #061327;
  box-shadow: 0 42px 85px rgba(17, 61, 124, 0.2);
}

.hero-image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 15, 43, 0.32), transparent 48%, rgba(3, 17, 48, 0.82));
}

.image-top {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.image-top a,
.online-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 99px;
  background: rgba(3, 20, 54, 0.43);
  backdrop-filter: blur(12px);
}

.online-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ce5a9;
  box-shadow: 0 0 0 5px rgba(60, 229, 169, 0.13);
}

.image-bottom {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.image-bottom span {
  color: #70d6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-bottom strong {
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.image-bottom small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.plans-preview-copy h2,
.platform-copy h2,
.cta-card h2 {
  margin-top: 17px;
  font-size: clamp(39px, 4vw, 58px);
}

.section-heading > p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.entry-section {
  background: #fff;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.entry-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 65, 126, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.entry-card:hover {
  transform: translateY(-7px);
  border-color: #a9c9f8;
  box-shadow: 0 28px 60px rgba(18, 76, 159, 0.14);
}

.entry-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #a0adbf;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.entry-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.14);
}

.entry-icon-blue {
  background: linear-gradient(145deg, #0872ff, #0749d5);
  box-shadow: 0 13px 30px rgba(4, 84, 229, 0.2);
}

.entry-icon-cyan {
  color: #0366c9;
  background: #dff6ff;
}

.entry-card h3 {
  margin: 38px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.entry-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.entry-card > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 12px;
}

.entry-card > strong span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.entry-card:hover > strong span {
  transform: translateX(4px);
}

.entry-card-dark {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 190, 255, 0.25), transparent 33%),
    linear-gradient(145deg, #0749c9, #061d61);
  box-shadow: 0 25px 60px rgba(7, 56, 156, 0.23);
}

.entry-card-dark .entry-number,
.entry-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.entry-card-dark > strong {
  color: #fff;
}

.plans-preview {
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 151, 255, 0.12), transparent 30%),
    var(--soft);
}

.plans-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.plans-preview-copy > p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.text-button span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-button:hover span {
  transform: translate(3px, -2px);
}

.range-panel {
  display: grid;
  gap: 12px;
}

.range-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 0.65fr 0.75fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 25px 28px;
  border: 1px solid #d8e4f2;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(19, 65, 126, 0.05);
}

.range-card > span {
  color: #78869b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.range-card > strong {
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  direction: ltr;
  unicode-bidi: isolate;
}

.range-card > small {
  color: #778499;
  font-size: 11px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.range-card-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0871ff, #0750dd);
  box-shadow: 0 22px 50px rgba(4, 83, 225, 0.25);
}

.range-card-primary > span,
.range-card-primary > small {
  color: rgba(255, 255, 255, 0.66);
}

.range-card-primary > strong {
  color: #fff;
}

.platform-section {
  background: #fff;
}

.platform-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
  padding: 72px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(57, 192, 255, 0.28), transparent 29%),
    linear-gradient(135deg, #073fb8, #061d5d);
  box-shadow: 0 35px 80px rgba(5, 48, 137, 0.23);
}

.section-kicker-light {
  color: #76d9ff;
}

.platform-copy h2 {
  color: #fff;
}

.platform-copy p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.platform-links {
  display: grid;
  gap: 10px;
}

.platform-links a {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.platform-links a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.13);
}

.platform-links span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-links strong {
  margin-top: 3px;
  font-size: 13px;
}

.platform-links b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 19px;
}

.cta-section {
  padding: 0 0 105px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 62px 66px;
  border: 1px solid #d9e5f3;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 100%, rgba(35, 158, 255, 0.13), transparent 30%),
    linear-gradient(135deg, #f9fcff, #eef5ff);
}

.cta-card > div:first-child {
  max-width: 650px;
}

.cta-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.cta-card p strong {
  color: var(--blue);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  color: #fff;
  background: #07142b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding: 76px 0 54px;
}

.footer-brand img {
  width: 188px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 0 27px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-i18n],
[data-i18n-attr] {
  overflow-wrap: anywhere;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .plans-preview-copy,
html[dir="rtl"] .platform-copy,
html[dir="rtl"] .cta-card,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom {
  text-align: right;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] .cta-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .entry-number {
  right: auto;
  left: 30px;
}

html[dir="rtl"] .entry-card > strong span,
html[dir="rtl"] .platform-links b {
  transform: rotate(180deg);
}

html[dir="rtl"] .entry-card:hover > strong span {
  transform: translateX(-4px) rotate(180deg);
}

html[dir="rtl"] .platform-links a:hover {
  transform: translateX(-4px);
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-toggle > span:nth-child(2),
html[dir="rtl"] .language-menu .language-option {
  text-align: right;
}

html[dir="rtl"] .language-chevron {
  margin-right: 2px;
  margin-left: 0;
}

html[lang="de"] .hero h1,
html[lang="fr"] .hero h1,
html[lang="pt"] .hero h1,
html[lang="it"] .hero h1,
html[lang="ru"] .hero h1,
html[lang="uk"] .hero h1,
html[lang="pl"] .hero h1,
html[lang="hu"] .hero h1,
html[lang="ro"] .hero h1,
html[lang="ar"] .hero h1,
html[lang="ur"] .hero h1,
html[lang="fa"] .hero h1,
html[lang="bn"] .hero h1,
html[lang="th"] .hero h1,
html[lang="kk"] .hero h1,
html[lang="mn"] .hero h1 {
  font-size: clamp(48px, 4.55vw, 66px);
  letter-spacing: -0.04em;
}

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

.reveal-delay {
  transition-delay: 100ms;
}

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

@media (max-width: 1240px) {
  :root {
    --shell: min(1160px, calc(100vw - 36px));
  }

  .nav-shell {
    grid-template-columns: 145px minmax(0, 1fr) 270px;
    gap: 0;
  }

  .brand {
    width: 142px;
  }

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

  .site-nav a {
    font-size: 10px;
  }

  body:not([data-locale="en"]) .site-nav {
    gap: 4px;
    padding-left: 18px;
    padding-right: 14px;
  }

  body:not([data-locale="en"]) .site-nav a {
    font-size: 8px;
  }

  .login-link {
    display: none;
  }

  .language-toggle {
    width: 126px;
    min-width: 126px;
    padding-inline: 10px;
  }

  .nav-actions {
    width: 270px;
  }

  .hero-grid {
    gap: 45px;
  }
}

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

  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 145px;
  }

  .brand img {
    height: 42px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: block;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-self: end;
  }

  .nav-actions > .button,
  .login-link {
    display: none;
  }

  .language-toggle {
    width: 126px;
    min-width: 126px;
  }

  .site-nav {
    position: fixed;
    z-index: 70;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 24px 100px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 25px 50px rgba(10, 48, 110, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 15px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  body:not([data-locale="en"]) .site-nav {
    display: flex;
    gap: 0;
    padding: 22px 24px 100px;
  }

  body:not([data-locale="en"]) .site-nav a {
    min-height: 0;
    display: block;
    padding: 15px 4px;
    font-size: 16px;
    line-height: 1.4;
    text-align: start;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid,
  .plans-preview-grid,
  .platform-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

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

  .hero h1 {
    max-width: 720px;
    font-size: clamp(52px, 8vw, 74px);
  }

  .hero-image {
    min-height: 550px;
  }

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

  .entry-card {
    min-height: 300px;
  }

  .plans-preview-grid {
    gap: 45px;
  }

  .platform-panel {
    gap: 45px;
    padding: 54px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 24px, 560px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

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

  .nav-actions > .button,
  .login-link {
    display: none;
  }

  .language-toggle {
    width: 45px;
    min-width: 45px;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 0;
    border-radius: 14px;
  }

  .language-toggle > span:nth-child(2),
  .language-chevron {
    display: none;
  }

  .language-menu {
    top: 78px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 92px);
  }

  .language-options-grid {
    max-height: calc(100dvh - 158px);
  }

  .language-menu {
    position: fixed;
    border-radius: 18px;
  }

  .language-menu-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-inline: 8px;
  }

  .language-menu-header span {
    line-height: 1.35;
    text-align: start;
  }

  .language-menu .language-option {
    min-height: 54px;
    padding-inline: 9px;
  }

  .language-menu small {
    font-size: 7px;
  }

  html[dir="rtl"] .language-menu {
    right: 16px;
    left: 16px;
  }

  html[dir="rtl"] .hero-copy,
  html[dir="rtl"] .plans-preview-copy,
  html[dir="rtl"] .platform-copy,
  html[dir="rtl"] .cta-card {
    text-align: center;
  }

  html[dir="rtl"] .hero-actions,
  html[dir="rtl"] .hero-meta,
  html[dir="rtl"] .cta-actions {
    justify-content: center;
  }

  html[dir="rtl"] .hero-badge {
    padding: 0 11px 0 0;
    text-align: right;
    border-right: 2px solid var(--blue);
    border-left: 0;
  }

  .hero {
    padding: 52px 0 72px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-badge {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px;
    padding: 0 0 0 11px;
    margin-inline: auto;
    color: #637086;
    text-align: left;
    border: 0;
    border-left: 2px solid var(--blue);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-badge span {
    padding: 0;
    color: var(--blue);
    border-radius: 0;
    background: transparent;
  }

  .hero-badge strong {
    color: #536177;
  }

  .hero h1 {
    margin: 20px auto 0;
    max-width: 470px;
    font-size: clamp(40px, 9.4vw, 44px);
    line-height: 1.08;
  }

  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="pt"] .hero h1,
  html[lang="it"] .hero h1,
  html[lang="ru"] .hero h1,
  html[lang="uk"] .hero h1,
  html[lang="pl"] .hero h1,
  html[lang="hu"] .hero h1,
  html[lang="ro"] .hero h1,
  html[lang="ar"] .hero h1,
  html[lang="ur"] .hero h1,
  html[lang="fa"] .hero h1,
  html[lang="bn"] .hero h1,
  html[lang="th"] .hero h1,
  html[lang="kk"] .hero h1,
  html[lang="mn"] .hero h1 {
    font-size: clamp(35px, 8.4vw, 41px);
    line-height: 1.12;
  }

  .hero-copy > p {
    max-width: 440px;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.72;
  }

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

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

  .hero-meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-image {
    min-height: 450px;
    border-radius: 27px;
  }

  .hero-image > img {
    object-position: 57% center;
  }

  .image-top {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .image-top a {
    display: none;
  }

  .online-pill {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 2px 8px rgba(2, 15, 43, 0.72);
  }

  .image-bottom {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }

  .image-bottom strong {
    font-size: 19px;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading h2,
  .plans-preview-copy h2,
  .platform-copy h2,
  .cta-card h2 {
    font-size: 40px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .entry-card {
    min-height: 315px;
    padding: 27px;
  }

  .range-card {
    min-height: 112px;
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
    padding: 21px 5px;
    border: 0;
    border-bottom: 1px solid #cfdded;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .range-card > small {
    grid-column: 1 / 3;
  }

  .range-card:last-child {
    border-bottom: 0;
  }

  .range-card-primary {
    color: inherit;
    border-color: #cfdded;
    background: transparent;
    box-shadow: none;
  }

  .range-card-primary > span,
  .range-card-primary > small {
    color: #78869b;
  }

  .range-card-primary > strong {
    color: var(--blue);
  }

  .range-panel {
    gap: 0;
    padding: 0 18px;
    border-top: 1px solid #cfdded;
    border-bottom: 1px solid #cfdded;
    background: rgba(255, 255, 255, 0.42);
  }

  .platform-panel {
    padding: 37px 24px;
    border-radius: 27px;
  }

  .platform-links a {
    min-height: 85px;
  }

  .cta-section {
    padding-bottom: 80px;
  }

  .cta-card {
    padding: 39px 25px;
    border-radius: 27px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
    padding-top: 60px;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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