@font-face {
  font-family: Dubai;
  src: url("./fonts/Dubai-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Dubai;
  src: url("./fonts/Dubai-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Dubai;
  src: url("./fonts/Dubai-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --paper: #f6f3eb;
  --surface: #fffdf7;
  --ink: #242a27;
  --muted: #646962;
  --line: #d9d9cf;
  --soft: #eae9e0;
  --teal: #0e4d5b;
  --red: #b63a32;
  --writing-wash: #e1ebe6;
  --production-wash: #f0e2d9;
  --on-ink: #fffdf7;
  --max: 1280px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  color-scheme: light;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
html[data-theme="dark"] {
  --paper: #191d1b;
  --surface: #222824;
  --ink: #f5f3ec;
  --muted: #b6bcb5;
  --line: #424a42;
  --soft: #2c332d;
  --writing-wash: #243a39;
  --production-wash: #3e2d29;
  --on-ink: #191d1b;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 17px/1.65 Dubai,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button,
label {
  touch-action: manipulation;
}
a,
button {
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease,
    filter 0.18s ease,
    text-decoration-color 0.18s ease,
    transform 0.2s var(--ease-out);
}
input,
select {
  caret-color: var(--accent, var(--ink));
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}
input:not([type="checkbox"]):focus-visible,
select:focus-visible {
  outline-offset: 2px;
  border-color: var(--ink);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
input,
select {
  min-width: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1 {
  font-size: clamp(46px, 5.3vw, 80px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h3 {
  line-height: 1.3;
}
em {
  font-style: normal;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: absolute;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 20;
  background: var(--ink);
  color: var(--on-ink);
  padding: 8px 20px;
}
.skip-link:focus {
  top: 12px;
}
.preview-strip {
  min-height: 27px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.status-dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 100%;
}
.site-header {
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  padding: 24px 40px;
  gap: 40px;
  min-height: 100px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  flex-shrink: 0;
  object-fit: contain;
}
.wordmark {
  display: block;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.18;
}
.wordmark small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  font-weight: 400;
}
.brand-home .wordmark {
  font-size: 24px;
  font-weight: 700;
}
.brand-home .brand-mark {
  width: 42px;
  height: 42px;
}
.site-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-inline: auto;
  font-size: 16px;
}
.site-header nav a {
  padding-block: 12px;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  border-color: var(--ink);
}
.header-tools {
  display: flex;
  gap: 8px;
  align-items: center;
}
.account-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  padding-inline: 8px;
}
.account-link svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.language-button,
.icon-button {
  background: transparent;
  border: 0;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
.language-button {
  padding: 6px 10px;
  font-size: 14px;
}
.icon-button {
  width: 38px;
}
.icon-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.language-button:active,
.icon-button:active {
  transform: scale(0.94);
  transition-duration: 0.12s;
}
@media (hover: hover) and (pointer: fine) {
  .language-button:hover,
  .icon-button:hover {
    background: var(--soft);
  }
}
.tool-divider {
  height: 16px;
  width: 1px;
  background: var(--line);
  margin-inline: 2px;
}
main {
  max-width: var(--max);
  margin: auto;
  padding: 0 40px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 14px;
}
.line-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.line-label:before {
  content: "";
  height: 1px;
  width: 24px;
  background: currentColor;
}
.intro {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 24px 0 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 11px 23px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 16px;
  white-space: normal;
  max-width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}
.button:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}
.primary {
  background: var(--ink);
  color: var(--on-ink);
}
.primary:hover {
  opacity: 0.9;
}
.outline {
  background: transparent;
  border-color: var(--line);
}
.outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}
.arrow {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
[dir="rtl"] .arrow {
  transform: rotate(180deg);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}
.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: currentColor;
}
.home-hero {
  padding: 66px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero-copy h1 em {
  color: var(--teal);
}
[data-theme="dark"] .hero-copy h1 em {
  color: #99bbb5;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-art {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  overflow: hidden;
}
.art-caption,
.art-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.art-caption > span:last-child {
  direction: ltr;
  font-variant-numeric: tabular-nums;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.product-books {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 34px 6px 44px;
  direction: ltr;
}
.book {
  position: relative;
  width: 46%;
  max-width: 220px;
  aspect-ratio: 0.7;
  min-height: 273px;
  padding: 27px 22px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 3px 8px 8px 3px;
  color: #f5f3ec;
  box-shadow:
    4px 12px 16px #151e2524,
    0 25px 36px #151e2515;
  isolation: isolate;
}
.book-writing {
  background: #0e4d5b;
  transform: rotate(-9deg) translate(8px, -3px);
  z-index: 2;
}
.book-daftar {
  background: #b63a32;
  transform: rotate(9deg) translate(-6px, 22px);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .book-writing:hover {
    transform: rotate(-7deg) translate(8px, -10px);
  }
  .book-daftar:hover {
    transform: rotate(7deg) translate(-6px, 14px);
  }
}
.product-books {
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  @starting-style {
    opacity: 0;
    transform: translateY(18px);
  }
}
.book-spine {
  position: absolute;
  inset-block: 0;
  left: 10px;
  width: 2px;
  background: #0002;
  border-right: 1px solid #fff2;
}
.book:after {
  content: "";
  height: 5px;
  background: #e6dfcf;
  border-radius: 0 0 5px 0;
  position: absolute;
  bottom: -4px;
  left: 7px;
  right: 2px;
  border-block: 1px solid #a6a28e;
}
.book-title {
  font-size: 25px;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: start;
  direction: ltr;
}
.book-title:lang(ar) {
  direction: rtl;
  font-size: 27px;
}
.book small {
  font-size: 10px;
  margin-top: auto;
  opacity: 0.85;
}
.book-number {
  position: absolute;
  bottom: 20px;
  right: 18px;
  font-size: 11px;
}
.book-rule {
  height: 1px;
  width: 100%;
  background: #ffffff70;
  margin: 6px 0 12px;
}
.book-line {
  height: 2px;
  width: 78%;
  background: #ffffff45;
  margin: 5px 0;
}
.book-line.short {
  width: 52%;
  margin-bottom: 22px;
}
.book-strips {
  width: 100%;
  display: grid;
  gap: 7px;
  margin: 9px 0 25px;
}
.book-strips i {
  height: 16px;
  border: 1px solid #ffffff60;
  border-radius: 2px;
}
.book-strips i:nth-child(2) {
  width: 86%;
}
.book-strips i:nth-child(3) {
  width: 70%;
}
.art-foot {
  justify-content: start;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.duo-dots {
  display: flex;
  gap: 4px;
  margin-inline-start: auto;
}
.duo-dots i {
  height: 7px;
  width: 7px;
  background: var(--teal);
  border-radius: 1px;
}
.duo-dots i + i {
  background: var(--red);
}
.family-section {
  border-block: 1px solid var(--line);
  padding: 56px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}
.family-section h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.family-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.family-section .text-link {
  margin-top: 18px;
}
.family-diagram {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.family-parent {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 24px;
  text-align: center;
}
.family-parent .brand-lockup {
  gap: 10px;
}
.family-parent .brand-mark {
  height: 48px;
  width: 48px;
}
.family-parent .wordmark {
  text-align: start;
  font-size: 22px;
}
.family-parent-caption {
  font-size: 11px;
  color: var(--muted);
}
.family-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  gap: 24px;
  padding-top: 30px;
}
.family-branches:before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 25px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}
.family-branches:after {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  height: 24px;
  width: 1px;
  background: var(--line);
}
.family-child {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 8px;
  text-align: center;
  gap: 6px;
  min-width: 0;
}
.family-child strong {
  font-size: 18px;
  font-weight: 500;
}
.family-child small {
  font-size: 12px;
  color: var(--muted);
}
@media (hover: hover) and (pointer: fine) {
  .family-child:hover .brand-mark {
    transform: translateY(-3px);
  }
}
.family-child .brand-mark {
  transition: transform 0.2s var(--ease-out);
}
.products-section {
  padding: 72px 0 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}
.section-heading h2 {
  font-size: 38px;
}
.section-heading .eyebrow {
  margin-bottom: 8px;
}
.section-heading > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 17px;
}
.writing {
  --accent: var(--teal);
  --wash: var(--writing-wash);
}
.production {
  --accent: var(--red);
  --wash: var(--production-wash);
}
.product-button {
  background: var(--accent, var(--ink));
  color: #fffdf7;
}
.product-button:hover {
  filter: brightness(1.1);
}
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 24px;
  overflow: hidden;
}
.product-feature-copy {
  padding: 38px 40px 42px;
  min-width: 0;
}
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.chapter {
  font-size: 12px;
  color: var(--muted);
}
.product-feature h3 {
  font-size: 38px;
  line-height: 1.25;
  margin: 36px 0 20px;
}
.product-feature h3 em {
  font-style: normal;
}
.product-feature-copy > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 430px;
  margin-bottom: 27px;
}
.product-feature .wordmark {
  font-size: 21px;
}
.product-feature .brand-mark {
  width: 44px;
  height: 44px;
}
.inline-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.product-feature-art {
  background: var(--wash);
  padding: 54px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
  gap: 24px;
}
.visual-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--production-wash);
  color: #88382e;
  font-size: 12px;
  border-radius: 100px;
  padding: 4px 11px;
  white-space: nowrap;
  line-height: 1.5;
}
.status-badge > span {
  height: 5px;
  width: 5px;
  background: currentColor;
  border-radius: 50%;
}
[data-theme="dark"] .status-badge {
  color: #f5b8a4;
}
.writing-window {
  color: #263c3b;
  background: #faf9f4;
  width: 100%;
  max-width: 510px;
  border-radius: 6px;
  border: 1px solid #9cb2ad88;
  box-shadow: 0 18px 32px #1a1f1c1a;
  overflow: hidden;
}
.window-bar {
  height: 38px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #d8dfd8;
  padding: 0 12px;
  background: #edf0e9;
  font-size: 10px;
}
.window-bar .brand-mark {
  margin-inline-start: auto;
}
.window-dots {
  display: flex;
  gap: 4px;
  margin-inline-end: 10px;
}
.window-dots i {
  height: 5px;
  width: 5px;
  background: #bfccc5;
  border-radius: 50%;
}
.window-dots i:first-child {
  background: #c99786;
}
.window-dots i:nth-child(2) {
  background: #c7b48b;
}
.editor-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 258px;
}
.editor-body aside {
  border-inline-end: 1px solid #d8dfd8;
  background: #f0f2ec;
  padding: 20px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 9px;
}
.editor-body aside small {
  font-size: 8px;
  padding: 0 7px;
  margin-bottom: 8px;
  color: #637b72;
}
.editor-body aside span {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 2px;
}
.editor-body aside b {
  font-weight: 400;
  opacity: 0.65;
}
.editor-body aside .selected {
  background: #d9e5dd;
}
.screenplay {
  padding: 24px 20px 25px;
  position: relative;
  font-size: 10px;
  line-height: 1.9;
  background: #fffef8;
}
.paper-meta {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  opacity: 0.7;
  margin-bottom: 24px;
}
.scene-heading {
  font-weight: 700;
  margin-bottom: 12px;
}
.screenplay .character {
  text-align: center;
  margin-top: 18px;
}
.screenplay .dialogue {
  max-width: 78%;
  margin-inline: auto;
  text-align: center;
}
.type-caret {
  display: block;
  width: 1px;
  height: 11px;
  background: var(--teal);
  margin-top: 22px;
  animation: caret 1.1s steps(2, jump-none) infinite;
}
@keyframes caret {
  50% {
    opacity: 0;
  }
}
.window-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  padding: 7px 12px;
  border-top: 1px solid #d8dfd8;
  background: #edf0e9;
}
.saved-dot {
  width: 4px;
  height: 4px;
  background: #598071;
  border-radius: 50%;
}
.bottom-end {
  margin-inline-start: auto;
}
.production-window {
  width: 100%;
  max-width: 415px;
  border: 1px solid #cc9e9388;
  background: #fcf9f2;
  color: #623a31;
  border-radius: 6px;
  box-shadow: 0 18px 32px #1a1f1c1a;
  overflow: hidden;
}
.production-window .window-bar {
  background: #eee1d8;
  border-color: #decac1;
}
.production-window .window-bar .brand-mark {
  margin-inline-start: 0;
}
.production-body {
  padding: 20px 24px 16px;
}
.schedule-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.day-number {
  font:
    400 26px/1.1 Georgia,
    serif;
  color: #b63a32;
}
.production-body h3 {
  font-size: 21px !important;
  font-weight: 500;
  margin: 12px 0 24px !important;
}
.schedule-labels,
.schedule-row {
  display: grid;
  grid-template-columns: 40px 1fr 45px;
  gap: 10px;
  align-items: center;
}
.schedule-labels {
  padding: 0 12px 7px;
  font-size: 9px;
  color: #866153;
}
.schedule-row {
  border: 1px solid #e4d9cf;
  border-inline-start: 3px solid #b63a32;
  padding: 12px;
  margin: 7px 0;
  border-radius: 3px;
  font-size: 12px;
  background: #f1e7dd;
}
.schedule-row:nth-last-of-type(2) {
  border-inline-start-color: #8b8d6c;
  background: #e9e9df;
}
.schedule-row strong {
  font-weight: 500;
}
.production-tabs {
  display: flex;
  gap: 7px;
  justify-content: space-between;
  border-top: 1px solid #decac1;
  padding-top: 12px;
  margin-top: 22px;
  font-size: 9px;
}
.production-tabs span {
  padding: 2px 5px;
  border-radius: 3px;
}
.production-tabs .active {
  background: #b63a32;
  color: #fff;
}
.bridge-section {
  padding: 72px 64px;
  background: var(--ink);
  color: var(--on-ink);
  border-radius: 8px;
  position: relative;
}
.bridge-section .eyebrow {
  color: inherit;
  opacity: 0.65;
}
.bridge-section h2 {
  font-size: 48px;
  max-width: 600px;
}
.bridge-section > p:not(.eyebrow) {
  font-size: 19px;
  opacity: 0.78;
  max-width: 710px;
  margin-top: 24px;
}
.journey {
  display: flex;
  gap: 36px;
  margin-top: 42px;
  padding-top: 27px;
  border-top: 1px solid #aaa5;
}
.journey span {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  flex: 1;
}
.journey b {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
}
.bridge-section > p.caption {
  font-size: 14px;
  color: inherit;
  opacity: 0.65;
  margin-top: 26px;
}
.account-band {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  gap: 40px;
  align-items: center;
}
.account-band .eyebrow {
  margin-bottom: 10px;
}
.account-band h2 {
  font-size: 34px;
  margin-bottom: 17px;
}
.account-band h2 br {
  display: none;
}
.account-band p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
}
.account-symbol {
  height: 125px;
  width: 125px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}
.account-symbol:before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px dashed var(--line);
  border-radius: 50%;
}
.account-symbol > svg {
  height: 42px;
  width: 42px;
  stroke: var(--ink);
  stroke-width: 1.25;
  fill: none;
}
.connected-logo {
  position: absolute;
  padding: 4px;
  background: var(--paper);
  border-radius: 8px;
}
.connected-logo.one {
  top: -6px;
  right: -8px;
}
.connected-logo.two {
  bottom: -5px;
  left: -8px;
}
.account-band-action {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.account-band-action .caption {
  margin-top: 0;
  max-width: 260px;
}
.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 0 40px 30px;
}
.footer-top {
  padding: 42px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-top .wordmark {
  font-size: 23px;
}
.footer-top p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
}
.footer-top p + p {
  margin-top: 8px;
}
.footer-publisher a,
.publisher-line a,
.preview-note a,
.privacy-items .text-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 55px;
  row-gap: 10px;
  align-items: start;
  font-size: 15px;
}
.footer-top nav a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-top nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  text-decoration-color: currentColor;
}
.footer-top nav small {
  color: var(--muted);
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.product-page {
  padding: 18px 0 64px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  min-height: 44px;
  margin-bottom: 40px;
}
.back-link .arrow {
  transform: rotate(180deg);
}
[dir="rtl"] .back-link .arrow {
  transform: none;
}
.product-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.product-heading-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.product-heading-lockup .brand-mark {
  width: 56px;
  height: 56px;
}
.product-heading-lockup .wordmark {
  font-size: 25px;
}
.product-page h1 {
  font-size: clamp(44px, 4.7vw, 68px);
}
.product-page-art {
  padding: 44px 20px 26px;
  min-height: 445px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  background: var(--wash);
  border-radius: 8px;
}
.product-page-art .editor-body {
  min-height: 310px;
}
.product-page-art .screenplay {
  padding: 28px 22px;
}
.product-page-art .production-window {
  max-width: 405px;
}
.caption {
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-top: 19px;
}
.features {
  border-block: 1px solid var(--line);
  padding: 42px 0 50px;
}
.features > .eyebrow {
  margin-bottom: 30px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.features-grid:has(article:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}
.features-grid:has(article:nth-child(6)) {
  grid-template-columns: repeat(3, 1fr);
}
.features-grid:has(article:nth-child(7)) {
  grid-template-columns: repeat(4, 1fr);
}
.schedule-row span[dir="ltr"],
.day-number,
.book-number,
.chapter,
.journey b,
.feature-number,
.color-palette code {
  font-variant-numeric: tabular-nums;
}
.feature-number {
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  display: block;
  margin-bottom: 22px;
}
.features h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.features p {
  font-size: 17px;
  color: var(--muted);
}
.features-note {
  margin-top: 34px;
  max-width: 760px;
}
.faq {
  padding: 42px 0 50px;
  border-bottom: 1px solid var(--line);
}
.faq > .eyebrow {
  margin-bottom: 18px;
}
.faq-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.faq h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.faq p {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
}
.next-product {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 66px 0;
  border-bottom: 1px solid var(--line);
}
.next-product h2 {
  margin: 22px 0;
  font-size: 36px;
}
.next-product p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.next-product .button {
  flex-shrink: 0;
}
.next-product .eyebrow {
  margin-bottom: 12px;
}
.next-product .caption {
  margin-top: 14px;
}
.interest-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.interest-intro > .eyebrow {
  margin-top: 32px;
}
.interest-intro > p:not(.eyebrow):not(.caption) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}
.interest-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}
.interest-brand > span {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.interest-brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
}
.form-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-size: 15px;
  margin-bottom: 7px;
}
.field label span {
  font-size: 12px;
  color: var(--muted);
}
input:not([type="checkbox"]),
select {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  padding: 10px 12px;
  min-height: 48px;
  width: 100%;
  font-size: 16px;
}
input[aria-invalid="true"] {
  border-color: var(--red);
}
.field-error {
  display: block;
  min-height: 0;
  font-size: 13px;
  color: #a43029;
  margin-top: 4px;
}
.field-error:empty {
  display: none;
}
[data-theme="dark"] .field-error {
  color: #ffb09e;
}
.consent-label {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  cursor: pointer;
  padding: 6px 0;
}
.consent-label input {
  appearance: auto;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--red);
}
.privacy-link {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 31px 25px;
  min-height: 24px;
}
.privacy-link .arrow {
  width: 14px;
  height: 14px;
}
.form-card .button {
  width: 100%;
  justify-content: space-between;
  min-height: 54px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
}
.honeypot {
  display: none !important;
}
.form-status:empty {
  display: none;
}
.form-status.error,
.form-status.success {
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
  @starting-style {
    opacity: 0;
    transform: translateY(6px);
  }
}
.form-status.error {
  font-size: 14px;
  color: #a43029;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid #b63a3270;
  border-radius: 4px;
}
[data-theme="dark"] .form-status.error {
  color: #ffb09e;
}
.form-status.success {
  padding: 36px 0;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.form-status.success strong {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.4;
}
.form-status.success p {
  color: var(--muted);
  font-size: 15px;
}
.success-mark {
  width: 55px;
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 10px;
}
[data-theme="dark"] .success-mark {
  color: #b0d3bb;
}
.simple-hero {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.simple-hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
}
.notice {
  padding: 20px 24px;
  background: var(--soft);
  border-inline-start: 2px solid var(--ink);
  border-radius: 3px;
}
.notice strong {
  font-size: 15px;
  font-weight: 500;
}
.notice p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.notice p + p {
  margin-top: 10px;
}
.account-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 56px 0 70px;
}
.account-products article {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.account-products .status-badge {
  margin-inline-start: 15px;
}
.account-products > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}
.account-products p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 17px;
}
.brand-specimen {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 16px;
}
.brand-specimen > span {
  font-size: 30px;
  font-weight: 500;
}
.brand-specimen > small {
  font-size: 12px;
  color: var(--muted);
}
.brand-family {
  padding: 40px 0 60px;
  border-block: 1px solid var(--line);
}
.brand-family .section-heading {
  align-items: start;
}
.brand-family .section-heading > p {
  max-width: 470px;
}
.brand-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.brand-tiles article {
  background: var(--wash, var(--soft));
  padding: 38px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 6px;
  text-align: center;
}
.brand-tiles h3 {
  font-size: 25px;
}
.brand-tiles p {
  font-size: 12px;
  color: var(--muted);
}
.color-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.color-palette > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.color-swatch {
  background: var(--swatch);
  width: 100%;
  height: 75px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.color-palette strong {
  font-size: 14px;
  font-weight: 500;
}
.color-palette code {
  font: 11px/1.1 monospace;
  direction: ltr;
  color: var(--muted);
}
.brand-language {
  padding: 65px 0;
  border-bottom: 1px solid var(--line);
}
.brand-language > p {
  max-width: 800px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}
.type-specimen {
  margin-top: 38px;
  font-size: clamp(35px, 5.2vw, 70px);
  line-height: 1.25;
  font-weight: 500;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.type-specimen em {
  color: var(--teal);
}
[data-theme="dark"] .type-specimen em {
  color: #b0d3bb;
}
.privacy-page {
  padding: 66px 0 80px;
  max-width: 830px;
  margin: auto;
}
.privacy-page h1 {
  font-size: 52px;
}
.privacy-items {
  margin: 45px 0;
}
.privacy-items article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.privacy-items h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.privacy-items p {
  font-size: 18px;
  color: var(--muted);
}
.privacy-items .text-link {
  margin-top: 12px;
}
.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
html[dir="ltr"] h1 {
  font-size: clamp(42px, 4.7vw, 71px);
  letter-spacing: -0.035em;
}
html[dir="ltr"] h2 {
  letter-spacing: -0.035em;
}
html[dir="ltr"] .hero-copy h1 em {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
html[dir="ltr"] .wordmark {
  letter-spacing: -0.025em;
}
html[dir="ltr"] .brand-home .wordmark {
  font-size: 23px;
}
html[dir="ltr"] .hero-art .book-title {
  font-size: 26px;
}
html[dir="ltr"] .product-feature h3 {
  font-size: 36px;
}
html[dir="ltr"] .brand-tiles h3 {
  font-size: 22px;
}
.home-hero > *,
.family-section > *,
.product-page-hero > *,
.simple-hero > *,
.account-band > *,
.interest-section > * {
  min-width: 0;
}
@media (min-width: 1500px) {
  .home-hero {
    padding-block: 85px 100px;
  }
  .hero-art {
    min-height: 505px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 24px;
    padding-inline: 28px;
  }
  .site-header nav {
    gap: 20px;
  }
  .account-link span {
    display: none;
  }
  main,
  .site-footer {
    padding-inline: 28px;
  }
  .home-hero {
    gap: 30px;
    padding-block: 50px 60px;
  }
  .hero-art {
    min-height: 430px;
    padding-inline: 17px;
  }
  .book {
    padding: 20px 15px 17px 24px;
    min-height: 245px;
  }
  .book-title {
    font-size: 23px;
  }
  .book-title:lang(ar) {
    font-size: 24px;
  }
  .book .brand-mark {
    width: 45px;
    height: 45px;
  }
  .book small {
    font-size: 9px;
  }
  .hero-copy h1 {
    font-size: 62px;
  }
  .family-section {
    gap: 40px;
  }
  .product-feature-copy {
    padding: 30px;
  }
  .product-feature .wordmark {
    font-size: 18px;
  }
  .product-feature h3 {
    font-size: 34px;
  }
  .product-feature-art {
    padding-inline: 20px;
  }
  .product-page-hero {
    gap: 32px;
  }
  .product-page h1 {
    font-size: 53px;
  }
  .interest-section {
    gap: 45px;
  }
  .features-grid:has(article:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
  .account-band {
    grid-template-columns: 120px 1fr;
    gap: 30px;
  }
  .account-band > .account-band-action {
    grid-column: 2;
    justify-self: start;
  }
  .account-symbol {
    width: 108px;
    height: 108px;
  }
  .account-band h2 {
    font-size: 32px;
  }
  .simple-hero {
    gap: 40px;
  }
  .footer-top nav {
    column-gap: 30px;
  }
}
@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
    padding: 18px 24px;
    gap: 10px;
    min-height: 0;
  }
  .brand-home .wordmark {
    font-size: 22px;
  }
  .site-header nav {
    order: 3;
    justify-content: center;
    width: 100%;
    gap: 32px;
    margin: 12px 0 0;
    border-top: 1px solid var(--line);
    padding-top: 9px;
    font-size: 15px;
  }
  .header-tools {
    margin-inline-start: auto;
  }
  .brand-home .brand-mark {
    width: 38px;
    height: 38px;
  }
  .home-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 32px;
  }
  .hero-copy h1 {
    font-size: 65px;
    max-width: 630px;
  }
  .intro {
    max-width: 620px;
  }
  .hero-art {
    max-width: 100%;
    min-height: 410px;
  }
  .product-books {
    padding: 22px 0 36px;
  }
  .book {
    max-width: 198px;
    min-height: 257px;
  }
  .art-foot {
    justify-content: center;
  }
  .duo-dots {
    margin-inline-start: 14px;
  }
  .family-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 42px;
  }
  .family-section > div:first-child {
    max-width: 600px;
  }
  .family-diagram {
    max-width: 580px;
    margin: auto;
  }
  .family-parent {
    padding-bottom: 26px;
  }
  .product-feature {
    grid-template-columns: 1fr;
  }
  .product-feature-art {
    padding: 38px 32px 25px;
    min-height: 340px;
  }
  .product-feature-copy {
    padding: 32px;
  }
  .product-feature h3 {
    font-size: 40px;
    margin-top: 30px;
  }
  .product-feature-copy > p {
    max-width: 590px;
  }
  .product-feature .wordmark {
    font-size: 22px;
  }
  .product-feature .writing-window {
    max-width: 520px;
  }
  .product-page-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-page-art {
    min-height: 405px;
    padding-inline: 32px;
  }
  .product-page h1 {
    font-size: 58px;
  }
  .product-heading-lockup {
    margin-bottom: 25px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features-grid:has(article:nth-child(4)) {
    grid-template-columns: 1fr 1fr;
  }
  .features h3 {
    font-size: 24px;
  }
  .next-product {
    gap: 30px;
    flex-direction: column;
    align-items: start;
  }
  .bridge-section {
    padding: 45px 35px;
  }
  .bridge-section h2 {
    font-size: 40px;
  }
  .interest-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 55px;
  }
  .interest-intro > p:not(.eyebrow):not(.caption) {
    max-width: 560px;
  }
  .interest-brand {
    display: none;
  }
  .interest-intro > .eyebrow {
    margin-top: 20px;
  }
  .simple-hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 38px;
  }
  .brand-specimen {
    min-height: 290px;
  }
  .brand-specimen .brand-mark {
    width: 120px;
    height: 120px;
  }
  .brand-family .section-heading {
    display: block;
  }
  .brand-family .section-heading > p {
    margin-top: 20px;
    max-width: 100%;
  }
  .brand-tiles h3 {
    font-size: 22px;
  }
  .brand-tiles .brand-mark {
    width: 85px;
    height: 85px;
  }
  .account-products {
    gap: 20px;
  }
  .account-products article {
    padding: 25px;
  }
  .account-products .brand-lockup {
    flex-direction: column;
    align-items: start;
  }
  .account-products .status-badge {
    margin-inline-start: 0;
    margin-top: 15px;
  }
  .account-products .wordmark {
    font-size: 21px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-top nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:last-child {
    margin-inline-start: auto;
  }
  .privacy-page {
    padding-top: 36px;
  }
}
@media (max-width: 520px) {
  main,
  .site-footer {
    padding-inline: 20px;
  }
  .site-header {
    padding-inline: 16px;
  }
  .brand-home .wordmark {
    font-size: 21px !important;
  }
  .brand-home .brand-lockup {
    gap: 6px;
  }
  .brand-home .brand-mark {
    width: 36px;
    height: 36px;
  }
  .account-link {
    display: none;
  }
  .tool-divider {
    display: none;
  }
  .header-tools {
    gap: 0;
  }
  .language-button {
    padding-inline: 9px;
    font-size: 13px;
  }
  .icon-button {
    width: 32px;
  }
  .site-header nav {
    gap: 38px;
  }
  .home-hero {
    padding: 28px 0 40px;
  }
  .hero-copy h1 {
    font-size: 49px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .intro {
    font-size: 18px;
    margin: 20px 0 24px;
  }
  .hero-actions {
    gap: 10px 20px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .button {
    font-size: 15px;
    padding: 10px 18px;
    min-height: 50px;
    gap: 20px;
  }
  .hero-art {
    min-height: 360px;
    padding: 17px 15px;
  }
  .art-caption {
    font-size: 10px;
  }
  .art-foot {
    font-size: 10px;
    gap: 6px;
    justify-content: start;
  }
  .duo-dots {
    margin-inline-start: auto;
  }
  .book {
    width: 45%;
    max-width: 170px;
    min-height: 230px;
    padding: 18px 13px 14px 22px;
  }
  .book .brand-mark {
    height: 40px;
    width: 40px;
  }
  .book-title,
  .book-title:lang(ar),
  html[dir="ltr"] .hero-art .book-title {
    font-size: 21px;
    margin-top: 15px;
  }
  .book-strips {
    gap: 6px;
    margin-block: 5px 23px;
  }
  .book-strips i {
    height: 13px;
  }
  .book-rule {
    margin-top: 0;
  }
  .book-line.short {
    margin-bottom: 22px;
  }
  .book small {
    font-size: 8px;
  }
  .book-number {
    font-size: 9px;
    bottom: 16px;
    right: 12px;
  }
  .family-section {
    gap: 35px;
  }
  .family-section h2 {
    font-size: 31px;
    margin-bottom: 17px;
  }
  .family-section p:not(.eyebrow) {
    font-size: 17px;
  }
  .family-parent .wordmark {
    font-size: 21px;
  }
  .family-child strong {
    font-size: 16px;
  }
  .family-child small {
    font-size: 11px;
  }
  .family-branches {
    gap: 10px;
  }
  .family-child .brand-mark {
    width: 50px;
    height: 50px;
  }
  .products-section {
    padding: 45px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .section-heading > p {
    margin-top: 12px;
    font-size: 16px;
  }
  .product-feature {
    margin-top: 20px;
  }
  .product-feature-copy {
    padding: 24px;
  }
  .product-feature h3,
  html[dir="ltr"] .product-feature h3 {
    font-size: 32px;
  }
  .product-feature .wordmark {
    font-size: 19px;
  }
  .product-feature .brand-mark {
    width: 41px;
    height: 41px;
  }
  .wordmark small {
    font-size: 10px;
  }
  .product-feature-copy > p {
    font-size: 17px;
    margin-bottom: 23px;
  }
  .product-topline {
    gap: 10px;
  }
  .status-badge {
    padding: 4px 9px;
    font-size: 11px;
  }
  .product-feature-art {
    padding: 30px 14px 18px;
    min-height: 305px;
    gap: 16px;
  }
  .editor-body {
    grid-template-columns: 65px 1fr;
    min-height: 237px;
  }
  .editor-body aside {
    padding: 17px 4px;
    font-size: 7px;
  }
  .editor-body aside span {
    padding: 5px 3px;
    gap: 4px;
  }
  .screenplay {
    padding: 20px 14px;
    font-size: 9px;
    line-height: 1.8;
  }
  .paper-meta {
    margin-bottom: 20px;
  }
  .window-bar {
    font-size: 9px;
    height: 33px;
    padding-inline: 10px;
  }
  .window-dots {
    margin-inline-end: 3px;
  }
  .window-dots i {
    width: 4px;
    height: 4px;
  }
  .production-body {
    padding: 16px 18px;
  }
  .production-body h3 {
    font-size: 19px !important;
    margin-bottom: 20px !important;
  }
  .schedule-row {
    padding: 10px;
    font-size: 11px;
  }
  .production-tabs {
    font-size: 8px;
  }
  .visual-caption {
    font-size: 10px;
  }
  .bridge-section {
    padding: 34px 25px;
  }
  .bridge-section h2 {
    font-size: 34px;
  }
  .bridge-section > p:not(.eyebrow) {
    font-size: 17px;
  }
  .journey {
    gap: 22px;
    flex-direction: column;
    margin-top: 30px;
    padding-top: 23px;
  }
  .journey span {
    gap: 15px;
  }
  .account-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0;
  }
  .account-symbol {
    width: 95px;
    height: 95px;
  }
  .account-band h2 {
    font-size: 30px;
  }
  .account-band > .account-band-action {
    grid-column: 1;
  }
  .account-band .eyebrow {
    font-size: 11px;
  }
  .footer-top {
    padding-block: 30px;
    gap: 26px;
  }
  .footer-top .wordmark {
    font-size: 23px;
  }
  .footer-top p {
    font-size: 15px;
  }
  .footer-top nav {
    gap: 6px 20px;
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 11px;
    gap: 12px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
    margin: 0;
  }
  .product-page {
    padding-top: 10px;
    padding-bottom: 38px;
  }
  .back-link {
    margin-bottom: 25px;
  }
  .product-page h1 {
    font-size: 46px;
  }
  .product-heading-lockup {
    gap: 14px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }
  .product-heading-lockup .brand-mark {
    width: 48px;
    height: 48px;
  }
  .product-heading-lockup .wordmark {
    font-size: 23px;
  }
  .product-page .intro {
    font-size: 18px;
  }
  .product-page-art {
    padding: 26px 14px 18px;
    min-height: 335px;
  }
  .product-page-art .editor-body {
    min-height: 280px;
  }
  .product-page-art .screenplay {
    padding: 23px 14px;
  }
  .caption {
    font-size: 12px;
  }
  .features {
    padding-block: 32px;
  }
  .features-grid:has(article:nth-child(4)) {
    grid-template-columns: 1fr;
  }
  .features-grid {
    gap: 25px;
  }
  .features article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }
  .features article:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .features h3 {
    font-size: 24px;
  }
  .features p {
    font-size: 16px;
  }
  .feature-number {
    margin-bottom: 15px;
  }
  .features > .eyebrow {
    margin-bottom: 25px;
  }
  .next-product {
    padding-block: 40px;
    gap: 24px;
  }
  .next-product h2 {
    font-size: 31px;
  }
  .next-product p {
    font-size: 17px;
  }
  .interest-section {
    padding-block: 44px;
  }
  .interest-intro h2 {
    font-size: 35px;
  }
  .interest-intro > p:not(.eyebrow):not(.caption) {
    font-size: 18px;
  }
  .form-card {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .consent-label {
    font-size: 13px;
  }
  .form-note {
    font-size: 12px;
  }
  .privacy-link {
    margin-inline: 0;
  }
  .form-status.success {
    min-height: 320px;
  }
  .form-status.success strong {
    font-size: 24px;
  }
  .simple-hero {
    padding: 35px 0 42px;
    gap: 32px;
  }
  .simple-hero h1 {
    font-size: 44px;
  }
  .notice {
    padding: 18px;
  }
  .account-products {
    grid-template-columns: 1fr;
    padding-block: 35px 45px;
  }
  .account-products .brand-lockup {
    flex-direction: row;
    align-items: center;
  }
  .account-products .status-badge {
    margin-inline-start: 12px;
  }
  .brand-family {
    padding-block: 30px 38px;
  }
  .brand-tiles {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 28px;
  }
  .brand-tiles article {
    padding: 26px;
    gap: 12px;
  }
  .brand-tiles .brand-mark {
    width: 92px;
    height: 92px;
  }
  .brand-tiles h3 {
    font-size: 25px;
  }
  .color-palette {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    margin-top: 28px;
  }
  .color-swatch {
    height: 65px;
  }
  .brand-language {
    padding-block: 38px;
  }
  .brand-language > p {
    font-size: 17px;
  }
  .type-specimen {
    font-size: 35px;
    padding: 27px 22px;
    margin-top: 25px;
  }
  .privacy-page {
    padding-block: 35px 50px;
  }
  .privacy-page h1 {
    font-size: 41px;
  }
  .privacy-items {
    margin-block: 32px;
  }
  .privacy-items article {
    padding-block: 22px;
  }
  .privacy-items h2 {
    font-size: 23px;
  }
  .privacy-items p {
    font-size: 17px;
  }
  html[dir="ltr"] h1 {
    font-size: 46px;
  }
  html[dir="ltr"] .product-page h1 {
    font-size: 43px;
  }
  html[dir="ltr"] .simple-hero h1 {
    font-size: 43px;
  }
  html[dir="ltr"] .brand-home .wordmark {
    font-size: 20px !important;
  }
  html[dir="ltr"] .product-feature .wordmark {
    font-size: 17px;
  }
  html[dir="ltr"] .family-child strong {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
  }
  a,
  button,
  input,
  select,
  .family-child .brand-mark {
    transition-property: background-color, color, border-color, opacity, filter, text-decoration-color;
    transition-duration: 0.15s;
  }
  .button:hover,
  .button:active,
  .language-button:active,
  .icon-button:active,
  .family-child:hover .brand-mark {
    transform: none;
  }
  .book-writing:hover {
    transform: rotate(-9deg) translate(8px, -3px);
  }
  .book-daftar:hover {
    transform: rotate(9deg) translate(-6px, 22px);
  }
  .product-books,
  .form-status.error,
  .form-status.success {
    transition-property: opacity;
    transition-duration: 0.25s;
    @starting-style {
      transform: none;
    }
  }
}
