.marketing-editor {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  background: var(--marketing-teal-deep);
  color: #ffffff;
}

.marketing-editor::after {
  position: absolute;
  top: -11rem;
  right: -7rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgb(255 255 255 / 2%),
    0 0 0 10rem rgb(255 255 255 / 1%);
  content: "";
}

.marketing-editor__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.26fr);
}

.marketing-kicker--light {
  color: #f1a177;
}

.marketing-editor__copy > p {
  color: rgb(255 255 255 / 64%);
}

.marketing-editor__copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.marketing-editor__copy li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgb(255 255 255 / 82%);
  font-size: 0.83rem;
}

.marketing-editor__copy li span {
  color: #f1a177;
}

.marketing-document {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 0.8rem;
  background: #ecf0ef;
  box-shadow: 0 32px 80px rgb(4 18 16 / 40%);
}

.marketing-document__toolbar {
  display: grid;
  min-height: 3rem;
  align-items: center;
  padding: 0 0.85rem;
  border-bottom: 1px solid #dce3e1;
  background: #ffffff;
  color: var(--marketing-ink);
  grid-template-columns: 1fr auto 1fr;
}

.marketing-document__toolbar > div {
  display: flex;
  gap: 0.25rem;
}

.marketing-document__toolbar > div span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #cad4d1;
}

.marketing-document__toolbar > div span:first-child {
  background: var(--marketing-orange);
}

.marketing-document__toolbar p {
  color: #687673;
  font-size: 0.52rem;
  font-weight: 700;
}

.marketing-document__toolbar > b {
  justify-self: end;
  padding: 0.43rem 0.58rem;
  border-radius: 0.35rem;
  background: var(--marketing-teal);
  color: #ffffff;
  font-size: 0.44rem;
}

.marketing-document__workspace {
  padding: 1.5rem 1.5rem 0;
}

.marketing-document__paper {
  min-height: 29rem;
  padding: 1.6rem 1.6rem 2rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgb(20 32 31 / 12%);
  color: var(--marketing-ink);
}

.marketing-document__paper-head {
  display: flex;
  justify-content: space-between;
}

.marketing-document__paper-head > div {
  display: flex;
  flex-direction: column;
}

.marketing-document__paper-head strong {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.marketing-document__paper-head strong i {
  color: var(--marketing-orange);
  font-style: normal;
}

.marketing-document__paper-head span,
.marketing-document__paper-head small {
  margin-top: 0.2rem;
  color: #87928f;
  font-size: 0.42rem;
}

.marketing-document__paper-head > div:last-child {
  align-items: flex-end;
}

.marketing-document__paper-head > div:last-child small {
  color: var(--marketing-orange);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.marketing-document__paper-head > div:last-child b {
  margin-top: 0.24rem;
  font-size: 0.55rem;
}

.marketing-document__client {
  display: flex;
  width: 45%;
  margin: 1.5rem 0 0 auto;
  flex-direction: column;
  padding: 0.75rem;
  border: 1px solid #e1e7e5;
  border-radius: 0.4rem;
  background: #f7f9f8;
}

.marketing-document__client span {
  color: #8a9693;
  font-size: 0.36rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.marketing-document__client strong {
  margin-top: 0.28rem;
  font-size: 0.54rem;
}

.marketing-document__client small {
  margin-top: 0.22rem;
  color: #74817e;
  font-size: 0.4rem;
  line-height: 1.5;
}

.marketing-document__title {
  margin-top: 1.5rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.marketing-document__lines {
  margin-top: 0.7rem;
  border-top: 1px solid #cad5d2;
  border-bottom: 1px solid #cad5d2;
}

.marketing-document__lines > div {
  display: grid;
  align-items: center;
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid #e4e9e7;
  color: #63716f;
  font-size: 0.4rem;
  grid-template-columns: 1.8fr 0.6fr 0.7fr 0.8fr;
}

.marketing-document__lines > div:first-child {
  background: var(--marketing-teal);
  color: #ffffff;
  font-size: 0.36rem;
}

.marketing-document__lines > div:last-child {
  border-bottom: 0;
}

.marketing-document__lines > div.is-selected {
  outline: 1px solid var(--marketing-orange);
  outline-offset: -1px;
  background: #fff8f4;
}

.marketing-document__lines strong,
.marketing-document__lines b:not(:first-child),
.marketing-document__lines span:not(:first-child) {
  text-align: right;
}

.marketing-document__total {
  display: grid;
  width: 43%;
  gap: 0.38rem 0.7rem;
  margin: 0.85rem 0 0 auto;
  color: #687572;
  font-size: 0.42rem;
  grid-template-columns: 1fr auto;
}

.marketing-document__total strong,
.marketing-document__total b {
  text-align: right;
}

.marketing-document__total b {
  padding-top: 0.36rem;
  border-top: 1px solid #cbd5d2;
  color: var(--marketing-ink);
  font-size: 0.55rem;
}

.marketing-custom {
  background: #ffffff;
}

.marketing-custom__grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
  grid-template-columns: 1fr 1fr;
}

.marketing-custom__visual {
  position: relative;
  min-height: 28rem;
}

.marketing-custom__sheet {
  position: absolute;
  width: 20rem;
  height: 26rem;
  border: 1px solid #dbe3e0;
  background: #ffffff;
  box-shadow: 0 24px 60px rgb(20 32 31 / 11%);
}

.marketing-custom__sheet--back {
  top: 1rem;
  left: 1rem;
  transform: rotate(-6deg);
  background: #e8efed;
  color: rgb(36 75 71 / 25%);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.marketing-custom__sheet--back span {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
}

.marketing-custom__sheet--front {
  top: 1rem;
  left: 5.2rem;
  transform: rotate(3deg);
  padding: 2rem 1.7rem;
}

.marketing-custom__logo {
  color: var(--marketing-teal);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.marketing-custom__title-lines {
  display: flex;
  margin-top: 2.6rem;
  flex-direction: column;
  gap: 0.5rem;
}

.marketing-custom__title-lines b {
  width: 55%;
  height: 0.7rem;
  background: var(--marketing-teal);
}

.marketing-custom__title-lines span,
.marketing-custom__content-lines span {
  display: block;
  width: 85%;
  height: 0.25rem;
  background: #d6dfdc;
}

.marketing-custom__content-lines {
  display: flex;
  margin-top: 3.5rem;
  flex-direction: column;
  gap: 1.2rem;
}

.marketing-custom__content-lines span:nth-child(2) {
  width: 100%;
}

.marketing-custom__content-lines span:nth-child(3) {
  width: 72%;
}

.marketing-custom__content-lines span:nth-child(4) {
  width: 92%;
}

.marketing-custom__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.2rem;
  height: 4.2rem;
  border-top: 4.2rem solid transparent;
  border-right: 4.2rem solid var(--marketing-orange);
}

.marketing-custom__tag {
  position: absolute;
  bottom: 2.2rem;
  left: 0;
  padding: 0.82rem 1rem;
  border-radius: 0.45rem;
  background: var(--marketing-teal);
  box-shadow: 0 14px 35px rgb(20 32 31 / 18%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 750;
}

.marketing-custom__points {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.marketing-custom__points div {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--marketing-line);
}

.marketing-custom__points strong {
  font-size: 0.88rem;
}

.marketing-custom__points span {
  color: var(--marketing-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.marketing-pricing {
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
  background: var(--marketing-mist);
}

.marketing-pricing__inner {
  display: grid;
  align-items: end;
  gap: 3.5rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.marketing-pricing__principles {
  border-top: 1px solid #c9d4d1;
}

.marketing-pricing__principles div {
  display: grid;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid #c9d4d1;
  grid-template-columns: 2rem 1fr;
}

.marketing-pricing__principles span {
  color: var(--marketing-orange);
  font-family: var(--ui-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
}

.marketing-pricing__principles strong {
  font-size: 0.88rem;
}

.marketing-pricing__principles small {
  color: var(--marketing-muted);
  font-size: 0.72rem;
  grid-column: 2;
}

.marketing-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #70807d;
  font-size: 0.72rem;
  font-weight: 650;
  grid-column: 2;
}

.marketing-coming-soon:hover {
  color: var(--marketing-teal);
}

.marketing-blog {
  background: #ffffff;
}

.marketing-blog__list {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
  grid-template-columns: repeat(3, 1fr);
}

.marketing-blog__list article {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.7rem;
  border-right: 1px solid var(--marketing-line);
  transition: background-color 150ms ease;
}

.marketing-blog__list article:last-child {
  border-right: 0;
}

.marketing-blog__list article:hover {
  background: #f9fbfa;
}

.marketing-blog__list article > p {
  color: #83908e;
  font-size: 0.68rem;
}

.marketing-blog__list article > p span {
  margin-right: 0.45rem;
  color: var(--marketing-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.marketing-blog__list h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.marketing-blog__list small {
  margin-top: auto;
  color: #7c8987;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.marketing-blog__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.marketing-contact {
  padding: 6.5rem 0;
  background: var(--marketing-teal);
  color: #ffffff;
}

.marketing-contact__inner {
  display: grid;
  align-items: end;
  gap: 4rem;
  grid-template-columns: 1fr auto;
}

.marketing-contact__inner > div:first-child {
  max-width: 730px;
}

.marketing-contact__inner > div > p:last-child {
  max-width: 590px;
  color: rgb(255 255 255 / 65%);
}

.marketing-contact__actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.85rem;
}

.marketing-button--light {
  background: #ffffff;
  color: var(--marketing-teal) !important;
}

.marketing-button--light:hover {
  background: #f4f7f6;
  box-shadow: 0 14px 30px rgb(8 26 24 / 22%);
}

.marketing-contact__actions small {
  color: rgb(255 255 255 / 52%);
  font-size: 0.67rem;
}

.marketing-footer {
  padding: 4rem 0 1.8rem;
  background: #102a28;
  color: #ffffff;
}

.marketing-footer__top {
  display: grid;
  gap: 4rem;
  padding-bottom: 3.5rem;
  grid-template-columns: 1fr 1fr;
}

.marketing-brand--footer .marketing-brand__mark {
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 7%);
}

.marketing-footer__top > div > p {
  max-width: 350px;
  margin-top: 1.2rem;
  color: rgb(255 255 255 / 48%);
  font-size: 0.8rem;
  line-height: 1.65;
}

.marketing-footer__top nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.marketing-footer__top nav div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.78rem;
}

.marketing-footer__top nav strong {
  margin-bottom: 0.2rem;
  color: rgb(255 255 255 / 88%);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.marketing-footer__top nav a {
  color: rgb(255 255 255 / 52%);
  font-size: 0.78rem;
  transition: color 140ms ease;
}

.marketing-footer__top nav a:hover {
  color: #ffffff;
}

.marketing-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 35%);
  font-size: 0.68rem;
}

.marketing-page.has-reveal-motion [data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.marketing-page.has-reveal-motion [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}
