/* ==========================================================================
   E-Menu product landing
   Loaded only on the WordPress front page. Every selector is namespaced to
   protect the public venue templates from marketing-page styles.
   ========================================================================== */

.eml-page {
  --eml-dark: #101512;
  --eml-dark-soft: #17211c;
  --eml-ink: #18201c;
  --eml-muted: #65706a;
  --eml-cream: #f5f2ea;
  --eml-paper: #fffdf8;
  --eml-green: #214f3d;
  --eml-green-bright: #2c6b52;
  --eml-sage: #dce7dd;
  --eml-orange: #d96b38;
  --eml-line: rgba(24, 32, 28, .11);
  --eml-line-dark: rgba(232, 238, 233, .13);
  --eml-shadow: 0 24px 70px rgba(16, 21, 18, .10);
  --eml-shadow-dark: 0 38px 90px rgba(0, 0, 0, .34);
  --eml-radius: 26px;
  --eml-radius-large: 38px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
  background: var(--eml-cream);
  color: var(--eml-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.eml-page a {
  color: inherit;
  text-decoration: none;
}

.eml-page button,
.eml-page input {
  font: inherit;
}

.eml-page button {
  color: inherit;
}

.eml-page img,
.eml-page svg {
  display: block;
  max-width: 100%;
}

.eml-page main {
  display: block;
}

.eml-page section[id] {
  scroll-margin-top: 96px;
}

.eml-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.eml-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--eml-dark);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.eml-page :focus-visible {
  outline: 3px solid var(--eml-orange);
  outline-offset: 4px;
}

/* Header ------------------------------------------------------------------ */

.eml-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  color: rgba(255, 255, 255, .86);
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.admin-bar .eml-header {
  top: 32px;
}

.eml-header::before {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: rgba(16, 21, 18, 0);
  content: "";
  pointer-events: none;
  transition: inherit;
}

.eml-header.is-scrolled::before,
.eml-header.is-open::before {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(16, 21, 18, .87);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.eml-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.eml-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.eml-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 11px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1;
}

.eml-brand__name {
  white-space: nowrap;
}

.eml-navigation {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 24px;
}

.eml-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.eml-nav a {
  position: relative;
  padding-block: 14px;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  transition: color .2s ease;
}

.eml-nav a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: var(--eml-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.eml-nav a:hover,
.eml-nav a:focus-visible {
  color: #fff;
}

.eml-nav a:hover::after,
.eml-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eml-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.eml-language {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.eml-language a {
  display: grid;
  min-width: 35px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: color .2s ease, background-color .2s ease;
}

.eml-language a.is-active {
  background: #fff;
  color: var(--eml-dark);
}

.eml-nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
}

.eml-nav-toggle__label {
  font-size: 12px;
  font-weight: 720;
}

.eml-nav-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.eml-nav-toggle__icon i {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.eml-nav-toggle__icon i:first-child {
  top: 3px;
}

.eml-nav-toggle__icon i:last-child {
  top: 10px;
}

.eml-nav-toggle[aria-expanded="true"] .eml-nav-toggle__icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.eml-nav-toggle[aria-expanded="true"] .eml-nav-toggle__icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

/* Shared type, buttons and section headings ------------------------------- */

.eml-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--eml-green);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .145em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eml-kicker i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.eml-kicker--light {
  color: #a9cdb9;
}

.eml-section {
  position: relative;
  padding-block: clamp(92px, 10vw, 144px);
}

.eml-section-heading {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.eml-section-heading h2,
.eml-admin__copy h2,
.eml-final__panel h2 {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--eml-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-style: normal;
  font-weight: 680;
  letter-spacing: -.055em;
  line-height: .99;
}

.eml-section-heading p,
.eml-admin__copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--eml-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}

.eml-section-heading--split {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 8fr);
  align-items: start;
  gap: 42px;
}

.eml-section-heading--split h2 {
  margin-top: 0;
}

.eml-section-heading--split p {
  max-width: 720px;
}

.eml-section-heading--center {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

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

.eml-section-heading--dark h2 {
  max-width: 840px;
  color: #f4f2ec;
}

.eml-section-heading--dark p {
  max-width: 680px;
  color: rgba(240, 244, 241, .62);
}

.eml-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 790;
  line-height: 1;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.eml-button span {
  font-size: 17px;
  transition: transform .22s ease;
}

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

.eml-button:hover span {
  transform: translateX(3px);
}

.eml-page .eml-button--primary {
  background: var(--eml-orange);
  box-shadow: 0 14px 34px rgba(217, 107, 56, .28);
  color: #fff;
}

.eml-button--primary:hover {
  box-shadow: 0 18px 40px rgba(217, 107, 56, .36);
}

.eml-page .eml-button--ghost {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.eml-button--ghost:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

.eml-page .eml-button--dark {
  background: var(--eml-dark);
  box-shadow: 0 14px 34px rgba(16, 21, 18, .18);
  color: #fff;
}

.eml-page .eml-button--nav {
  min-height: 42px;
  padding-inline: 17px;
  border-color: rgba(255, 255, 255, .13);
  background: #fff;
  color: var(--eml-dark);
  font-size: 12px;
}

/* Hero -------------------------------------------------------------------- */

.eml-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(25, 42, 33, .58), rgba(16, 21, 18, 0) 45%),
    var(--eml-dark);
  color: #fff;
}

.eml-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  pointer-events: none;
}

.eml-hero::after {
  position: absolute;
  right: 5%;
  bottom: -290px;
  width: 740px;
  height: 740px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(255, 255, 255, .018),
    0 0 0 190px rgba(255, 255, 255, .012);
  content: "";
  pointer-events: none;
}

.eml-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.eml-hero__glow--one {
  top: 110px;
  right: -170px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(75, 132, 101, .23), rgba(75, 132, 101, 0) 69%);
}

.eml-hero__glow--two {
  bottom: -210px;
  left: 20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(217, 107, 56, .10), rgba(217, 107, 56, 0) 72%);
}

.eml-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  min-height: 850px;
  padding-top: 104px;
  padding-bottom: 72px;
}

.eml-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eml-hero__copy h1 {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 28px 0 0;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(58px, 6.7vw, 94px);
  font-style: normal;
  font-weight: 675;
  letter-spacing: -.07em;
  line-height: .91;
}

.eml-hero__copy h1 span {
  white-space: nowrap;
}

.eml-hero__copy h1 em {
  margin-top: 8px;
  color: #d79a70;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03em;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.eml-hero__copy > p {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(241, 244, 242, .68);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.eml-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.eml-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: start;
  gap: 0;
  max-width: 700px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  list-style: none;
}

.eml-feature-strip li {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: rgba(255, 255, 255, .61);
  font-size: 11px;
  font-weight: 680;
  white-space: nowrap;
}

.eml-feature-strip li:first-child {
  padding-left: 0;
}

.eml-feature-strip li + li {
  border-left: 1px solid rgba(255, 255, 255, .10);
}

.eml-feature-strip li span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(169, 205, 185, .35);
  border-radius: 50%;
  color: #b8dbc7;
  font-size: 9px;
}

.eml-hero__product {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
}

.eml-hero__product::before {
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 99, 73, .26), rgba(16, 21, 18, 0) 68%);
  content: "";
}

.eml-floating-card,
.eml-qr-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(28, 37, 32, .76);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .29);
  color: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.eml-floating-card--language {
  top: 17%;
  right: -5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 13px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
}

.eml-floating-card--language i {
  width: 25px;
  height: 12px;
  padding: 2px;
  border-radius: 999px;
  background: var(--eml-orange);
}

.eml-floating-card--language i::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 13px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.eml-floating-card--updated {
  right: -20px;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 15px;
}

.eml-floating-card--updated > i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: #b9dbc7;
  color: var(--eml-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.eml-floating-card--updated span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.eml-floating-card--updated small {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 700;
}

.eml-floating-card--updated strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-qr-card {
  bottom: 12%;
  left: -8px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 10px;
  min-width: 176px;
  padding: 12px;
  border-radius: 16px;
}

.eml-qr-card .eml-mini-qr {
  grid-row: 1 / span 2;
}

.eml-qr-card small {
  align-self: end;
  color: rgba(255, 255, 255, .49);
  font-size: 9px;
}

.eml-qr-card strong {
  align-self: start;
  font-size: 10px;
}

.eml-mini-qr,
.eml-qr-flow__qr {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 5px;
  border-radius: 7px;
  background: #fff;
}

.eml-mini-qr i,
.eml-qr-flow__qr i {
  aspect-ratio: 1;
  background: var(--eml-dark);
}

.eml-mini-qr i:nth-child(2),
.eml-mini-qr i:nth-child(6),
.eml-mini-qr i:nth-child(8),
.eml-qr-flow__qr i:nth-child(2),
.eml-qr-flow__qr i:nth-child(6),
.eml-qr-flow__qr i:nth-child(8) {
  border-radius: 50%;
  background: var(--eml-green);
}

/* Product phone ----------------------------------------------------------- */

.eml-phone {
  position: relative;
  z-index: 3;
  width: min(100%, 356px);
  aspect-ratio: 9 / 18.7;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 47px;
  background: #111512;
  box-shadow: var(--eml-shadow-dark);
  color: #eee5d4;
  transform: rotate(1deg);
}

.eml-phone::before {
  position: absolute;
  inset: 4px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 43px;
  content: "";
  pointer-events: none;
}

.eml-phone__hardware {
  position: absolute;
  z-index: 8;
  top: 16px;
  left: 50%;
  display: flex;
  width: 78px;
  height: 22px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  background: #070907;
  transform: translateX(-50%);
}

.eml-phone__speaker {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: #262b27;
}

.eml-phone__camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #243c33;
  box-shadow: 0 0 0 2px #121713;
}

.eml-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 16px 14px 12px;
  border-radius: 39px;
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 150, 91, .11), transparent 24%),
    linear-gradient(180deg, #0d0d0c 0%, #131210 100%);
}

.eml-phone__status {
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  font-weight: 750;
}

.eml-phone__status-icons {
  font-size: 6px;
  letter-spacing: 2px;
}

.eml-phone__venue-head {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-block: 6px;
  border-bottom: 1px solid rgba(238, 229, 212, .11);
}

.eml-phone__venue-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #b9965b;
  border-radius: 50%;
  color: #d4b379;
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.eml-phone__venue-name {
  overflow: hidden;
  color: #f4ecdf;
  font-family: Georgia, serif;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-phone__language {
  padding: 5px 7px;
  border-radius: 99px;
  background: rgba(185, 150, 91, .13);
  color: #d4b379;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: box-shadow .3s ease, background-color .3s ease;
}

.eml-phone__language b {
  color: rgba(255, 255, 255, .25);
}

.eml-phone__intro {
  display: flex;
  flex-direction: column;
  padding: 12px 2px 10px;
}

.eml-phone__eyebrow {
  color: #b9965b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eml-phone__intro strong {
  margin-top: 4px;
  color: #f2ecdf;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
}

.eml-phone__search {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid rgba(185, 150, 91, .20);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  color: rgba(238, 229, 212, .42);
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.eml-phone__search svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.eml-phone__search span {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-phone__search kbd {
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 4px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .35);
  font-family: inherit;
  font-size: 6px;
}

.eml-phone__story {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 175px;
  overflow: hidden;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid rgba(185, 150, 91, .20);
  border-radius: 18px 18px 35% 18px;
  background:
    radial-gradient(circle at 75% 42%, rgba(255, 255, 255, .11), transparent 25%),
    var(--eml-story-color, #2b1c18);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.eml-phone__story::before,
.eml-phone__story::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
}

.eml-phone__story::before {
  top: -60px;
  right: -40px;
  width: 145px;
  height: 145px;
}

.eml-phone__story::after {
  right: 9px;
  bottom: -70px;
  width: 180px;
  height: 135px;
}

.eml-phone__story-top {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  color: rgba(255, 255, 255, .65);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.eml-phone__story-orb {
  position: relative;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  align-self: center;
  place-items: center;
  border: 5px solid #f0e7d8;
  border-radius: 50%;
  background: #efc37f;
  box-shadow: 0 9px 24px rgba(0, 0, 0, .18);
  color: #fff;
  font-size: 23px;
}

.eml-phone__story-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  align-self: end;
  flex-direction: column;
  padding-left: 10px;
}

.eml-phone__story-copy strong {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.05;
}

.eml-phone__story-copy span {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: rgba(255, 255, 255, .56);
  font-size: 6.5px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eml-phone__story > b {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  justify-self: end;
  color: #f2ecdf;
  font-size: 7px;
  letter-spacing: .05em;
}

.eml-phone__category-row {
  display: flex;
  gap: 5px;
  overflow: hidden;
  padding-block: 9px 7px;
}

.eml-phone__category-row span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(238, 229, 212, .10);
  border-radius: 99px;
  color: rgba(238, 229, 212, .48);
  font-size: 6.5px;
  font-weight: 700;
  white-space: nowrap;
}

.eml-phone__category-row span.is-active {
  border-color: #b9965b;
  background: #b9965b;
  color: #151411;
}

.eml-phone__items {
  display: grid;
  gap: 5px;
}

.eml-phone__item {
  position: relative;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 6px 8px;
  border: 1px solid rgba(238, 229, 212, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  transition: opacity .3s ease, filter .3s ease, border-color .3s ease;
}

.eml-phone__item-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  background: rgba(185, 150, 91, .12);
  font-size: 13px;
}

.eml-phone__item-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.eml-phone__item-copy strong {
  overflow: hidden;
  color: #f0e9dd;
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-phone__item-copy small {
  overflow: hidden;
  margin-top: 1px;
  color: rgba(238, 229, 212, .38);
  font-size: 5.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-phone__item-copy em {
  align-self: flex-start;
  margin-top: 2px;
  padding: 1px 4px;
  border-radius: 99px;
  background: rgba(185, 150, 91, .13);
  color: #c9aa74;
  font-size: 5px;
  font-style: normal;
}

.eml-phone__item > b {
  color: #d6b87f;
  font-size: 7px;
  white-space: nowrap;
}

.eml-phone__availability-state {
  position: absolute;
  inset: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(13, 13, 12, .84);
  color: #e0c28a;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.eml-phone__powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 8px;
  color: rgba(238, 229, 212, .29);
  font-size: 5.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eml-phone__powered-mark {
  display: grid;
  width: 12px;
  height: 12px;
  place-items: center;
  border: 1px solid rgba(185, 150, 91, .35);
  border-radius: 4px;
  color: #b9965b;
  font-family: Georgia, serif;
  font-style: italic;
}

.eml-phone[data-eml-screen="search"] .eml-phone__search {
  border-color: rgba(239, 195, 127, .78);
  background: rgba(185, 150, 91, .12);
  box-shadow: 0 0 0 3px rgba(185, 150, 91, .10);
}

.eml-phone[data-eml-screen="story"] .eml-phone__story {
  border-color: rgba(239, 195, 127, .72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28), 0 0 0 4px rgba(185, 150, 91, .08);
  transform: translateY(-2px);
}

.eml-phone[data-eml-screen="availability"] .eml-phone__item--availability {
  border-color: rgba(217, 107, 56, .40);
  opacity: .62;
  filter: grayscale(.5);
}

.eml-phone[data-eml-screen="availability"] .eml-phone__availability-state {
  display: flex;
}

.eml-phone[data-eml-screen="language"] .eml-phone__language {
  background: #b9965b;
  box-shadow: 0 0 0 4px rgba(185, 150, 91, .12);
  color: #14130f;
}

/* Process ----------------------------------------------------------------- */

.eml-process {
  background:
    radial-gradient(circle at 90% 30%, rgba(220, 231, 221, .52), transparent 28%),
    linear-gradient(180deg, #f7f4ed 0%, var(--eml-cream) 100%);
}

.eml-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.eml-steps__line {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 15%;
  left: 15%;
  height: 1px;
  overflow: hidden;
  background: rgba(33, 79, 61, .16);
}

.eml-steps__line i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eml-orange);
  box-shadow: 0 0 0 5px rgba(217, 107, 56, .11);
  transform: translateX(-15px);
}

.eml-steps.is-in-view .eml-steps__line i {
  animation: eml-step-dot 1.25s cubic-bezier(.22, .75, .28, 1) forwards;
}

@keyframes eml-step-dot {
  to { transform: translateX(calc(70vw - 40px)); }
}

.eml-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--eml-line);
  border-radius: var(--eml-radius);
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 18px 55px rgba(16, 21, 18, .05);
}

.eml-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eml-step__top > span {
  color: var(--eml-green);
  font-size: 12px;
  font-weight: 850;
}

.eml-step__top small {
  padding: 6px 9px;
  border: 1px solid var(--eml-line);
  border-radius: 99px;
  color: var(--eml-muted);
  font-size: 9px;
  font-weight: 720;
}

.eml-step__icon {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 42px auto 34px;
  place-items: center;
  border: 1px solid rgba(33, 79, 61, .15);
  border-radius: 32px;
  background:
    radial-gradient(circle, rgba(220, 231, 221, .75), rgba(220, 231, 221, .22));
  color: var(--eml-green);
  transform: rotate(-3deg);
}

.eml-step:nth-of-type(2) .eml-step__icon {
  border-radius: 36px;
  background: var(--eml-dark);
  box-shadow: 0 22px 46px rgba(16, 21, 18, .17);
  color: #d8bb85;
  transform: rotate(2deg);
}

.eml-step:nth-of-type(3) .eml-step__icon {
  background: rgba(217, 107, 56, .10);
  color: var(--eml-orange);
}

.eml-step__icon svg {
  width: 48px;
  height: 48px;
}

.eml-step h3 {
  margin: auto 0 0;
  color: var(--eml-ink);
  font-size: 23px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.eml-step p {
  margin: 10px 0 0;
  color: var(--eml-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Demo -------------------------------------------------------------------- */

.eml-demo {
  overflow: hidden;
  background: var(--eml-paper);
}

.eml-demo-stage {
  position: relative;
  display: grid;
  min-height: 840px;
  place-items: center;
  overflow: hidden;
  padding: 60px;
  border: 1px solid rgba(24, 32, 28, .08);
  border-radius: var(--eml-radius-large);
  background:
    radial-gradient(circle at 50% 45%, rgba(220, 231, 221, .92), rgba(220, 231, 221, .20) 37%, transparent 63%),
    linear-gradient(145deg, #f4f0e6, #fffdf8 55%, #eef3ed);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.eml-demo-stage::before,
.eml-demo-stage::after {
  position: absolute;
  border: 1px solid rgba(33, 79, 61, .09);
  border-radius: 50%;
  content: "";
}

.eml-demo-stage::before {
  width: 710px;
  height: 710px;
}

.eml-demo-stage::after {
  width: 540px;
  height: 540px;
  border-style: dashed;
}

.eml-demo-stage__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 79, 61, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 79, 61, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 74%);
  mask-image: radial-gradient(circle, #000, transparent 74%);
}

.eml-demo-stage__phone {
  position: relative;
  z-index: 3;
}

.eml-phone--demo {
  width: 374px;
  transform: rotate(-.6deg);
}

.eml-demo-note {
  position: absolute;
  z-index: 5;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(24, 32, 28, .10);
  border-radius: 19px;
  background: rgba(255, 253, 248, .84);
  box-shadow: 0 18px 46px rgba(16, 21, 18, .10);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.eml-demo-note__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 12px;
  background: var(--eml-sage);
  color: var(--eml-green);
}

.eml-demo-note__icon svg {
  width: 19px;
  height: 19px;
}

.eml-demo-note > strong {
  display: block;
  color: var(--eml-ink);
  font-size: 14px;
}

.eml-demo-note > p {
  margin: 6px 0 0;
  color: var(--eml-muted);
  font-size: 11px;
  line-height: 1.5;
}

.eml-demo-note--categories {
  top: 19%;
  left: 5%;
}

.eml-demo-note--categories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.eml-demo-note--categories > div i {
  padding: 5px 7px;
  border: 1px solid var(--eml-line);
  border-radius: 99px;
  color: var(--eml-green);
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.eml-demo-note--search {
  right: 5%;
  bottom: 20%;
}

.eml-demo-note__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(33, 79, 61, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--eml-muted);
  font-size: 8px;
}

.eml-demo-note--language {
  top: 17%;
  right: 6%;
  width: 190px;
}

.eml-demo-note--language > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--eml-green);
  font-size: 10px;
}

.eml-demo-note--language > span i {
  width: 26px;
  height: 13px;
  padding: 2px;
  border-radius: 99px;
  background: var(--eml-green);
}

.eml-demo-note--language > span i::after {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: 13px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.eml-demo__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.eml-demo__cta > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--eml-muted);
  font-size: 11px;
  font-weight: 700;
}

.eml-demo__cta > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f9b70;
  box-shadow: 0 0 0 4px rgba(79, 155, 112, .12);
}

/* Benefits ---------------------------------------------------------------- */

.eml-benefits {
  background: linear-gradient(180deg, var(--eml-cream), #f2efe7);
}

.eml-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.eml-benefit-card {
  position: relative;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--eml-line);
  border-radius: var(--eml-radius);
  background: rgba(255, 253, 248, .88);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.eml-benefit-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(33, 79, 61, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 24px rgba(33, 79, 61, .025);
}

.eml-benefit-card:hover {
  z-index: 2;
  border-color: rgba(33, 79, 61, .24);
  box-shadow: var(--eml-shadow);
  transform: translateY(-4px);
}

.eml-benefit-card--2 {
  background: var(--eml-sage);
}

.eml-benefit-card--6 {
  border-color: rgba(255, 255, 255, .10);
  background: var(--eml-dark);
  color: #fff;
}

.eml-benefit-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(33, 79, 61, .13);
  border-radius: 14px;
  background: rgba(220, 231, 221, .58);
  color: var(--eml-green);
  transition: transform .25s ease;
}

.eml-benefit-card:hover .eml-benefit-card__icon {
  transform: translateY(-2px);
}

.eml-benefit-card__icon svg {
  width: 21px;
  height: 21px;
}

.eml-benefit-card--6 .eml-benefit-card__icon {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  color: #d4b379;
}

.eml-benefit-card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(24, 32, 28, .25);
  font-size: 10px;
  font-weight: 850;
}

.eml-benefit-card--6 .eml-benefit-card__number {
  color: rgba(255, 255, 255, .28);
}

.eml-benefit-card h3 {
  margin: auto 0 0;
  color: var(--eml-ink);
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.eml-benefit-card--6 h3 {
  color: #fff;
}

.eml-benefit-card p {
  margin: 10px 0 0;
  color: var(--eml-muted);
  font-size: 14px;
  line-height: 1.55;
}

.eml-benefit-card--6 p {
  color: rgba(255, 255, 255, .58);
}

.eml-benefit-card > small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--eml-green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eml-benefit-card > small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.eml-benefit-card--6 > small {
  color: #d4b379;
}

/* Beyond PDF -------------------------------------------------------------- */

.eml-beyond {
  overflow: visible;
  background:
    radial-gradient(circle at 10% 30%, rgba(54, 100, 76, .18), transparent 30%),
    var(--eml-dark);
  color: #fff;
}

.eml-beyond::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .021) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .021) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  pointer-events: none;
}

.eml-beyond .eml-container {
  position: relative;
  z-index: 1;
}

.eml-beyond__grid {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.eml-beyond__sticky {
  position: sticky;
  top: 112px;
  display: grid;
  min-height: 760px;
  place-items: center;
}

.admin-bar .eml-beyond__sticky {
  top: 144px;
}

.eml-beyond__halo {
  position: absolute;
  width: min(100%, 490px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 109, 81, .24), transparent 67%);
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .012);
}

.eml-phone--feature {
  width: 340px;
  transform: none;
}

.eml-beyond__signal {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 16%;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(32, 46, 38, .82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
  color: #d7e9dd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.eml-beyond__signal::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #91c7a8;
  box-shadow: 0 0 0 4px rgba(145, 199, 168, .10);
  content: "";
}

.eml-beyond__features {
  display: grid;
  gap: 0;
  padding-bottom: 70px;
}

.eml-product-feature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  min-height: 260px;
  padding: 42px 26px 42px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color .25s ease, padding-left .25s ease;
}

.eml-product-feature:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.eml-product-feature:hover,
.eml-product-feature.is-active {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .045), transparent 85%);
}

.eml-product-feature > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  color: rgba(255, 255, 255, .39);
  font-size: 9px;
  font-weight: 800;
  transition: border-color .25s ease, color .25s ease, background-color .25s ease;
}

.eml-product-feature.is-active > span {
  border-color: #d4b379;
  background: rgba(185, 150, 91, .13);
  color: #e1c793;
}

.eml-product-feature h3 {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: 1;
  transition: color .25s ease;
}

.eml-product-feature.is-active h3,
.eml-product-feature:hover h3 {
  color: #fff;
}

.eml-product-feature p {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .50);
  font-size: 15px;
  line-height: 1.65;
}

.eml-product-feature small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #a9cdb9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eml-product-feature small i {
  font-size: 13px;
  font-style: normal;
}

/* Guest / owner ----------------------------------------------------------- */

.eml-audience {
  background:
    radial-gradient(circle at 20% 90%, rgba(220, 231, 221, .75), transparent 32%),
    var(--eml-paper);
}

.eml-audience .eml-section-heading h2 {
  display: flex;
  flex-direction: column;
}

.eml-audience .eml-section-heading h2 em {
  color: var(--eml-orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
}

.eml-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.eml-audience-card {
  min-height: 530px;
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--eml-radius-large);
}

.eml-audience-card--guest {
  border: 1px solid rgba(33, 79, 61, .12);
  background: linear-gradient(145deg, #e7eee7, #f1f4ed);
}

.eml-audience-card--owner {
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(circle at 90% 10%, rgba(80, 132, 104, .25), transparent 28%),
    var(--eml-green);
  box-shadow: 0 34px 80px rgba(33, 79, 61, .20);
  color: #fff;
}

.eml-audience-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(24, 32, 28, .11);
}

.eml-audience-card--owner .eml-audience-card__head {
  border-color: rgba(255, 255, 255, .13);
}

.eml-audience-card__head > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
  color: var(--eml-green);
}

.eml-audience-card--owner .eml-audience-card__head > span {
  background: rgba(255, 255, 255, .10);
  color: #d5eadf;
}

.eml-audience-card__head svg {
  width: 24px;
  height: 24px;
}

.eml-audience-card h3 {
  margin: 0;
  color: var(--eml-ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.eml-audience-card--owner h3 {
  color: #fff;
}

.eml-audience-card ul {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.eml-audience-card li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(24, 32, 28, .09);
  color: #3d4942;
  font-size: 15px;
  font-weight: 620;
}

.eml-audience-card--owner li {
  border-color: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
}

.eml-audience-card li span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(33, 79, 61, .18);
  border-radius: 50%;
  color: var(--eml-green);
  font-size: 9px;
}

.eml-audience-card--owner li span {
  border-color: rgba(255, 255, 255, .20);
  color: #bdd9c8;
}

/* Admin ------------------------------------------------------------------- */

.eml-admin {
  overflow: hidden;
  background: var(--eml-cream);
}

.eml-admin__grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.eml-admin__copy .eml-kicker {
  margin-bottom: 4px;
}

.eml-admin__copy h2 {
  max-width: 540px;
}

.eml-admin__copy > p {
  max-width: 540px;
}

.eml-admin__copy > ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.eml-admin__copy > ul li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--eml-line);
  color: #425048;
  font-size: 13px;
  font-weight: 630;
}

.eml-admin__copy > ul span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--eml-sage);
  color: var(--eml-green);
  font-size: 9px;
}

.eml-admin__copy > small {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--eml-muted);
  font-size: 10px;
  line-height: 1.55;
}

.eml-admin__copy > small i {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--eml-line);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.eml-admin__visual {
  min-width: 0;
}

.eml-admin-preview {
  overflow: hidden;
  border: 1px solid rgba(24, 32, 28, .13);
  border-radius: 26px;
  background: #f7f8f6;
  box-shadow: 0 38px 90px rgba(16, 21, 18, .16);
  color: #253129;
  font-size: 12px;
}

.eml-admin-preview__chrome {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(24, 32, 28, .09);
  background: #eef0ed;
}

.eml-admin-preview__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c6cbc6;
}

.eml-admin-preview__chrome span:first-child {
  background: #d99173;
}

.eml-admin-preview__chrome span:nth-child(2) {
  background: #d5b96d;
}

.eml-admin-preview__chrome span:nth-child(3) {
  background: #7eb28f;
}

.eml-admin-preview__chrome b {
  margin-left: 12px;
  color: #89918c;
  font-size: 8px;
  font-weight: 620;
}

.eml-admin-preview__layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 530px;
}

.eml-admin-preview__sidebar {
  display: flex;
  flex-direction: column;
  padding: 19px 13px;
  background: var(--eml-dark);
  color: #fff;
}

.eml-admin-preview__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 7px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.eml-admin-preview__brand i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  color: #d4b379;
  font-family: Georgia, serif;
  font-size: 13px;
}

.eml-admin-preview__brand strong {
  font-size: 10px;
}

.eml-admin-preview__sidebar nav {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.eml-admin-preview__sidebar nav span {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .47);
  font-size: 8px;
  font-weight: 650;
}

.eml-admin-preview__sidebar nav span.is-active {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.eml-admin-preview__sidebar nav i {
  width: 12px;
  color: #9bc4ad;
  font-style: normal;
  text-align: center;
}

.eml-admin-preview__venue-dot {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 7px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.eml-admin-preview__venue-dot span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b9965b;
  border-radius: 50%;
  color: #d4b379;
  font-family: Georgia, serif;
}

.eml-admin-preview__venue-dot small {
  overflow: hidden;
  color: rgba(255, 255, 255, .56);
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-admin-preview__content {
  min-width: 0;
  padding: 23px;
}

.eml-admin-preview__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.eml-admin-preview__topbar > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.eml-admin-preview__topbar > div span {
  color: #89918c;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eml-admin-preview__topbar > div strong {
  overflow: hidden;
  margin-top: 2px;
  color: var(--eml-ink);
  font-size: 16px;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-admin-preview__live {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(33, 79, 61, .12);
  border-radius: 8px;
  background: #fff;
  color: var(--eml-green);
  font-size: 7px;
  font-weight: 750;
}

.eml-admin-preview__live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #68a77d;
}

.eml-admin-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 22px;
}

.eml-admin-preview__stats > div {
  display: flex;
  min-height: 98px;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(24, 32, 28, .08);
  border-radius: 12px;
  background: #fff;
}

.eml-admin-preview__stats span {
  color: #7a847e;
  font-size: 7px;
  font-weight: 680;
}

.eml-admin-preview__stats strong {
  margin-top: auto;
  color: var(--eml-ink);
  font-size: 24px;
  line-height: 1;
}

.eml-admin-preview__stats small {
  margin-top: 6px;
  color: #669478;
  font-size: 6px;
}

.eml-admin-preview__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .8fr);
  gap: 12px;
  margin-top: 12px;
}

.eml-admin-preview__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(24, 32, 28, .08);
  border-radius: 13px;
  background: #fff;
}

.eml-admin-preview__actions span {
  display: flex;
  min-height: 39px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(24, 32, 28, .08);
  border-radius: 8px;
  background: #f8f9f7;
  color: #536159;
  font-size: 6.5px;
  font-weight: 680;
  line-height: 1.25;
}

.eml-admin-preview__actions span.is-primary {
  border-color: var(--eml-green);
  background: var(--eml-green);
  color: #fff;
}

.eml-admin-preview__activity {
  padding: 12px;
  border: 1px solid rgba(24, 32, 28, .08);
  border-radius: 13px;
  background: #fff;
}

.eml-admin-preview__activity > strong {
  color: var(--eml-ink);
  font-size: 8px;
}

.eml-admin-preview__activity > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding-block: 11px;
  border-bottom: 1px solid rgba(24, 32, 28, .07);
}

.eml-admin-preview__activity-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: #f2eee7;
  font-size: 11px;
}

.eml-admin-preview__activity p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
}

.eml-admin-preview__activity p b {
  overflow: hidden;
  color: var(--eml-ink);
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eml-admin-preview__activity p small {
  color: #8a928d;
  font-size: 5.5px;
}

.eml-admin-preview__activity em {
  color: #619172;
  font-size: 5.5px;
  font-style: normal;
}

/* Comparison -------------------------------------------------------------- */

.eml-compare {
  background: var(--eml-paper);
}

.eml-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.eml-comparison-card {
  min-height: 510px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 30px;
}

.eml-comparison-card--paper {
  border: 1px solid rgba(24, 32, 28, .12);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(24, 32, 28, .035) 31px),
    #f0eee8;
  box-shadow: 0 16px 40px rgba(16, 21, 18, .06);
  transform: rotate(-1deg);
}

.eml-comparison-card--digital {
  border: 1px solid rgba(33, 79, 61, .16);
  background:
    radial-gradient(circle at 90% 10%, rgba(220, 231, 221, .9), transparent 30%),
    #f7fbf6;
  box-shadow: 0 30px 70px rgba(33, 79, 61, .15);
}

.eml-comparison-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(24, 32, 28, .12);
  border-radius: 19px;
  background: rgba(255, 255, 255, .54);
  color: #777d79;
  font-size: 26px;
}

.eml-comparison-card--digital .eml-comparison-card__icon {
  border-color: transparent;
  background: var(--eml-green);
  box-shadow: 0 14px 32px rgba(33, 79, 61, .22);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 31px;
  font-style: italic;
}

.eml-comparison-card > small {
  display: block;
  margin-top: 40px;
  color: var(--eml-muted);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eml-comparison-card h3 {
  margin: 8px 0 0;
  color: var(--eml-ink);
  font-size: 31px;
  font-weight: 690;
  letter-spacing: -.045em;
}

.eml-comparison-card ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.eml-comparison-card li {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(24, 32, 28, .09);
  color: #59635d;
  font-size: 13px;
  font-weight: 610;
}

.eml-comparison-card li span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(24, 32, 28, .14);
  border-radius: 50%;
  color: #8b918e;
  font-size: 11px;
}

.eml-comparison-card--digital li span {
  border-color: rgba(33, 79, 61, .17);
  background: var(--eml-sage);
  color: var(--eml-green);
  font-size: 8px;
}

.eml-comparison__transition {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  color: var(--eml-green);
  text-align: center;
}

.eml-comparison__transition span {
  color: var(--eml-muted);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .10em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eml-comparison__transition i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(33, 79, 61, .14);
  border-radius: 50%;
  background: var(--eml-sage);
  font-style: normal;
}

.eml-comparison__transition svg {
  width: 24px;
  height: 24px;
}

/* Statement --------------------------------------------------------------- */

.eml-statement {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 13vw, 180px);
  background: var(--eml-dark);
  color: #fff;
  text-align: center;
}

.eml-statement::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .014), 0 0 0 180px rgba(255, 255, 255, .009);
  content: "";
  transform: translate(-50%, -50%);
}

.eml-statement__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .021) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .021) 1px, transparent 1px);
  background-size: 55px 55px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.eml-statement .eml-container {
  position: relative;
  z-index: 1;
}

.eml-statement h2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 8vw, 106px);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -.07em;
  line-height: .91;
}

.eml-statement h2 em {
  color: #d4b379;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.eml-qr-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  margin-top: 78px;
}

.eml-qr-flow > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}

.eml-qr-flow > div > small {
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eml-qr-flow__qr,
.eml-qr-flow__device,
.eml-qr-flow__screen {
  width: 80px;
  height: 80px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 21px;
  background: rgba(255, 255, 255, .055);
}

.eml-qr-flow__device {
  display: grid;
  place-items: center;
  color: #c5e0d0;
}

.eml-qr-flow__device svg {
  width: 37px;
  height: 37px;
}

.eml-qr-flow__screen {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  gap: 5px 7px;
  padding: 14px;
}

.eml-qr-flow__screen i {
  display: grid;
  grid-row: 1 / span 3;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: var(--eml-orange);
  color: #fff;
  font-family: Georgia, serif;
  font-style: italic;
}

.eml-qr-flow__screen b {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .27);
}

.eml-qr-flow__screen b:nth-child(3) {
  width: 72%;
}

.eml-qr-flow__screen b:nth-child(4) {
  width: 85%;
}

.eml-qr-flow__arrow {
  color: rgba(255, 255, 255, .28);
  font-style: normal;
}

.eml-qr-flow__arrow svg {
  width: 30px;
  height: 30px;
}

/* Venue gallery ----------------------------------------------------------- */

.eml-venues {
  background:
    radial-gradient(circle at 95% 10%, rgba(220, 231, 221, .72), transparent 26%),
    var(--eml-cream);
}

.eml-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.eml-venue-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--eml-line);
  border-radius: 30px;
  background: var(--eml-paper);
  transition: transform .3s ease, box-shadow .3s ease;
}

.eml-venue-card:hover {
  box-shadow: var(--eml-shadow);
  transform: translateY(-5px);
}

.eml-venue-card > a {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 0 26px;
  min-height: 330px;
  padding: 24px;
}

.eml-venue-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(24, 32, 28, .25);
  font-size: 10px;
  font-weight: 850;
}

.eml-venue-card__visual {
  display: grid;
  grid-row: 1 / span 3;
  align-self: stretch;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .78), rgba(220, 231, 221, .52)),
    var(--eml-sage);
}

.eml-venue-card__visual::before,
.eml-venue-card__visual::after {
  position: absolute;
  border: 1px solid rgba(33, 79, 61, .10);
  border-radius: 50%;
  content: "";
}

.eml-venue-card__visual::before {
  width: 120px;
  height: 120px;
}

.eml-venue-card__visual::after {
  width: 170px;
  height: 170px;
}

.eml-venue-card__visual i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(33, 79, 61, .18);
  border-radius: 22px;
  background: var(--eml-green);
  box-shadow: 0 18px 38px rgba(33, 79, 61, .21);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
}

.eml-venue-card__meta {
  align-self: end;
  margin-top: 52px;
  color: var(--eml-green);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eml-venue-card__copy {
  display: flex;
  min-width: 0;
  align-self: center;
  flex-direction: column;
  padding-block: 18px;
}

.eml-venue-card__copy strong {
  overflow-wrap: anywhere;
  color: var(--eml-ink);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: 1;
}

.eml-venue-card__copy small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 11px;
  color: var(--eml-muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eml-venue-card__copy > span {
  margin-top: 10px;
  color: #8b928e;
  font-size: 10px;
}

.eml-venue-card__cta {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--eml-line);
  color: var(--eml-ink);
  font-size: 11px;
  font-weight: 780;
}

.eml-venue-card__cta i {
  font-size: 15px;
  font-style: normal;
  transition: transform .25s ease;
}

.eml-venue-card:hover .eml-venue-card__cta i {
  transform: translate(3px, -3px);
}

.eml-venue-card--archive-after-dark {
  border-color: rgba(185, 150, 91, .25);
  background: #161513;
}

.eml-venue-card--archive-after-dark .eml-venue-card__number {
  color: rgba(255, 255, 255, .24);
}

.eml-venue-card--archive-after-dark .eml-venue-card__visual {
  background:
    radial-gradient(circle at 48% 38%, rgba(185, 150, 91, .16), transparent 34%),
    linear-gradient(145deg, #30201e, #171513);
}

.eml-venue-card--archive-after-dark .eml-venue-card__visual::before,
.eml-venue-card--archive-after-dark .eml-venue-card__visual::after {
  border-color: rgba(185, 150, 91, .14);
}

.eml-venue-card--archive-after-dark .eml-venue-card__visual i {
  border-color: #b9965b;
  border-radius: 50%;
  background: transparent;
  color: #d6b879;
}

.eml-venue-card--archive-after-dark .eml-venue-card__meta {
  color: #b9965b;
}

.eml-venue-card--archive-after-dark .eml-venue-card__copy strong {
  color: #f2ecdf;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.eml-venue-card--archive-after-dark .eml-venue-card__copy small,
.eml-venue-card--archive-after-dark .eml-venue-card__copy > span {
  color: rgba(242, 236, 223, .48);
}

.eml-venue-card--archive-after-dark .eml-venue-card__cta {
  border-color: rgba(255, 255, 255, .10);
  color: #e8ddc9;
}

.eml-empty-state {
  padding: 70px 24px;
  border: 1px dashed var(--eml-line);
  border-radius: 28px;
  background: rgba(255, 253, 248, .7);
  text-align: center;
}

.eml-empty-state > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  place-items: center;
  border-radius: 16px;
  background: var(--eml-sage);
  color: var(--eml-green);
  font-size: 24px;
}

.eml-empty-state h3 {
  margin: 22px 0 0;
  color: var(--eml-ink);
}

.eml-empty-state p {
  margin: 8px 0 0;
  color: var(--eml-muted);
}

/* Final CTA and footer ---------------------------------------------------- */

.eml-final {
  padding: 0 0 clamp(82px, 9vw, 130px);
  background: var(--eml-cream);
}

.eml-final__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 90px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--eml-radius-large);
  background:
    radial-gradient(circle at 90% 20%, rgba(78, 137, 104, .28), transparent 29%),
    radial-gradient(circle at 15% 110%, rgba(217, 107, 56, .16), transparent 28%),
    var(--eml-dark);
  box-shadow: 0 40px 90px rgba(16, 21, 18, .18);
  color: #fff;
}

.eml-final__panel::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.eml-final__panel > *:not(.eml-final__mark) {
  position: relative;
  z-index: 2;
}

.eml-final__panel h2 {
  max-width: 850px;
  margin-top: 22px;
  color: #fff;
}

.eml-final__panel > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.eml-final__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.eml-final__actions > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 700;
}

.eml-final__actions > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #97cbae;
  box-shadow: 0 0 0 4px rgba(151, 203, 174, .10);
}

.eml-final__mark {
  position: absolute;
  right: 7%;
  bottom: -16%;
  color: rgba(255, 255, 255, .045);
  font-family: Georgia, serif;
  font-size: clamp(220px, 30vw, 420px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.eml-footer {
  background: var(--eml-dark);
  color: rgba(255, 255, 255, .62);
}

.eml-footer__top {
  display: grid;
  grid-template-columns: .8fr 1.4fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.eml-brand--footer {
  color: #fff;
}

.eml-footer__top > p {
  max-width: 470px;
  margin: 0;
  font-size: 13px;
}

.eml-footer__top nav {
  display: flex;
  gap: 22px;
}

.eml-footer__top nav a {
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-weight: 680;
}

.eml-footer__top nav a:hover {
  color: #fff;
}

.eml-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  font-size: 9px;
}

.eml-footer__bottom > span:nth-child(2) {
  color: rgba(255, 255, 255, .34);
  text-align: center;
}

.eml-footer__bottom > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.eml-footer__bottom > div i {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, .20);
}

/* Motion ------------------------------------------------------------------ */

.eml-motion-ready [data-eml-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .68s cubic-bezier(.22, .75, .28, 1) var(--eml-reveal-delay, 0ms),
    transform .68s cubic-bezier(.22, .75, .28, 1) var(--eml-reveal-delay, 0ms);
}

.eml-motion-ready [data-eml-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .eml-phone--hero {
    animation: eml-phone-float 7s ease-in-out infinite;
  }
}

@keyframes eml-phone-float {
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(.4deg) translateY(-7px); }
}

/* Laptop ------------------------------------------------------------------ */

@media (max-width: 1180px) {
  .eml-hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
    gap: 36px;
  }

  .eml-hero__copy h1 {
    font-size: clamp(54px, 6.4vw, 76px);
  }

  .eml-feature-strip {
    grid-template-columns: repeat(2, max-content);
    width: max-content;
  }

  .eml-feature-strip li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-left: 0;
  }

  .eml-feature-strip li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .10);
  }

  .eml-floating-card--updated {
    right: -5px;
  }

  .eml-qr-card {
    left: -5px;
  }

  .eml-demo-note--categories {
    left: 3%;
  }

  .eml-demo-note--search,
  .eml-demo-note--language {
    right: 3%;
  }

  .eml-admin__grid {
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
    gap: 48px;
  }

  .eml-admin-preview__layout {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .eml-admin-preview__sidebar {
    padding-inline: 10px;
  }
}

/* Tablet ------------------------------------------------------------------ */

@media (max-width: 960px) {
  .eml-header__inner {
    min-height: 70px;
  }

  .eml-nav-toggle {
    display: inline-flex;
  }

  .eml-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(16, 21, 18, .97);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .28);
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility .22s ease, opacity .22s ease, transform .22s ease;
  }

  .eml-header.is-open .eml-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .eml-nav {
    display: grid;
    width: 100%;
    gap: 0;
    margin: 0;
  }

  .eml-nav a {
    min-height: 46px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

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

  .eml-header__actions {
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .eml-button--nav {
    min-width: 150px;
  }

  .eml-hero {
    min-height: auto;
  }

  .eml-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

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

  .eml-hero__copy h1 {
    align-items: center;
    font-size: clamp(60px, 10vw, 86px);
  }

  .eml-hero__copy > p {
    margin-inline: auto;
  }

  .eml-hero__actions,
  .eml-feature-strip {
    justify-content: center;
    margin-inline: auto;
  }

  .eml-hero__product {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .eml-floating-card--language {
    right: 5%;
  }

  .eml-floating-card--updated {
    right: 2%;
  }

  .eml-qr-card {
    left: 3%;
  }

  .eml-section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eml-section-heading--split h2 {
    margin-top: 0;
  }

  .eml-steps {
    gap: 14px;
  }

  .eml-step {
    min-height: 350px;
    padding: 20px;
  }

  .eml-step__icon {
    width: 94px;
    height: 94px;
  }

  .eml-demo-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 14px;
    min-height: auto;
    padding: 54px 28px 28px;
  }

  .eml-demo-stage::before,
  .eml-demo-stage::after {
    top: 15%;
  }

  .eml-demo-stage__phone {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    margin-bottom: 34px;
  }

  .eml-demo-note {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 168px;
  }

  .eml-demo-note--categories {
    grid-column: 1;
  }

  .eml-demo-note--search {
    grid-column: 2;
  }

  .eml-demo-note--language {
    display: none;
  }

  .eml-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eml-beyond__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .eml-beyond__sticky {
    position: relative;
    top: auto;
    min-height: 750px;
  }

  .admin-bar .eml-beyond__sticky {
    top: auto;
  }

  .eml-beyond__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 0;
  }

  .eml-product-feature {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    min-height: 270px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: rgba(255, 255, 255, .025);
  }

  .eml-product-feature:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .eml-product-feature:hover,
  .eml-product-feature.is-active {
    padding-left: 25px;
    border-color: rgba(185, 150, 91, .34);
    background: rgba(255, 255, 255, .055);
  }

  .eml-product-feature h3 {
    font-size: 27px;
  }

  .eml-product-feature p {
    font-size: 13px;
  }

  .eml-admin__grid {
    grid-template-columns: 1fr;
  }

  .eml-admin__copy {
    max-width: 720px;
  }

  .eml-admin__copy h2,
  .eml-admin__copy > p {
    max-width: 680px;
  }

  .eml-comparison {
    grid-template-columns: minmax(0, 1fr) 95px minmax(0, 1fr);
    gap: 14px;
  }

  .eml-comparison-card {
    min-height: 500px;
    padding: 28px;
  }

  .eml-comparison__transition span {
    display: none;
  }

  .eml-venue-card > a {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0 20px;
    min-height: 310px;
  }

  .eml-venue-card__visual {
    min-height: 250px;
  }

  .eml-footer__top {
    grid-template-columns: .7fr 1.3fr;
  }

  .eml-footer__top nav {
    grid-column: 1 / -1;
  }
}

/* Mobile ------------------------------------------------------------------ */

@media (max-width: 760px) {
  .eml-container {
    width: min(100% - 34px, 620px);
  }

  .eml-page section[id] {
    scroll-margin-top: 78px;
  }

  .admin-bar .eml-header {
    top: 46px;
  }

  .eml-header__inner {
    min-height: 66px;
  }

  .eml-brand__mark {
    width: 32px;
    height: 32px;
  }

  .eml-navigation {
    top: calc(100% + 6px);
  }

  .eml-section {
    padding-block: 78px;
  }

  .eml-section-heading {
    margin-bottom: 40px;
  }

  .eml-section-heading h2,
  .eml-admin__copy h2,
  .eml-final__panel h2 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: .98;
  }

  .eml-section-heading p,
  .eml-admin__copy > p {
    margin-top: 18px;
    font-size: 16px;
  }

  .eml-hero__grid {
    gap: 50px;
    padding-top: 124px;
    padding-bottom: 80px;
  }

  .eml-hero__copy h1 {
    font-size: clamp(49px, 14vw, 70px);
  }

  .eml-hero__copy h1 span {
    white-space: normal;
  }

  .eml-hero__copy > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .eml-hero__actions {
    gap: 10px;
    margin-top: 28px;
  }

  .eml-feature-strip {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .eml-feature-strip li {
    justify-content: center;
    padding-inline: 8px;
    white-space: normal;
  }

  .eml-feature-strip li:first-child,
  .eml-feature-strip li:nth-child(3) {
    padding-left: 8px;
  }

  .eml-hero__product {
    padding-block: 10px 40px;
  }

  .eml-floating-card--language {
    top: 16%;
    right: 0;
  }

  .eml-floating-card--updated {
    right: 0;
    bottom: 17%;
    min-width: 160px;
  }

  .eml-qr-card {
    bottom: 8%;
    left: 0;
  }

  .eml-phone {
    width: min(100%, 344px);
  }

  .eml-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 22px;
  }

  .eml-steps__line {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 4px;
    width: 1px;
    height: auto;
  }

  .eml-steps__line i {
    top: 0;
    left: -3px;
  }

  .eml-steps.is-in-view .eml-steps__line i {
    animation-name: eml-step-dot-mobile;
  }

  @keyframes eml-step-dot-mobile {
    to { transform: translateY(790px); }
  }

  .eml-step {
    min-height: 320px;
  }

  .eml-step__icon {
    width: 92px;
    height: 92px;
    margin: 30px auto 25px;
  }

  .eml-step__icon svg {
    width: 40px;
    height: 40px;
  }

  .eml-demo-stage {
    grid-template-columns: 1fr;
    padding: 36px 16px 16px;
    border-radius: 28px;
  }

  .eml-demo-stage::before {
    width: 480px;
    height: 480px;
  }

  .eml-demo-stage::after {
    width: 390px;
    height: 390px;
  }

  .eml-demo-stage__phone {
    grid-column: 1;
    margin-bottom: 24px;
  }

  .eml-phone--demo {
    width: min(100%, 344px);
  }

  .eml-demo-note--categories,
  .eml-demo-note--search {
    grid-column: 1;
    min-height: 0;
  }

  .eml-demo__cta {
    flex-direction: column;
  }

  .eml-benefit-grid {
    grid-template-columns: 1fr;
  }

  .eml-benefit-card {
    min-height: 230px;
  }

  .eml-beyond__sticky {
    min-height: 700px;
  }

  .eml-phone--feature {
    width: min(100%, 330px);
  }

  .eml-beyond__signal {
    right: 0;
    bottom: 14%;
  }

  .eml-beyond__features {
    grid-template-columns: 1fr;
  }

  .eml-product-feature {
    min-height: 0;
  }

  .eml-audience__grid {
    grid-template-columns: 1fr;
  }

  .eml-audience-card {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .eml-audience-card__head {
    padding-bottom: 22px;
  }

  .eml-audience-card li {
    min-height: 54px;
    font-size: 14px;
  }

  .eml-admin-preview__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .eml-admin-preview__sidebar {
    display: none;
  }

  .eml-admin-preview__content {
    padding: 17px;
  }

  .eml-admin-preview__stats > div {
    min-height: 88px;
    padding: 10px;
  }

  .eml-admin-preview__workspace {
    grid-template-columns: 1fr;
  }

  .eml-admin-preview__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eml-admin-preview__activity {
    display: none;
  }

  .eml-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eml-comparison-card {
    min-height: 0;
  }

  .eml-comparison-card--paper {
    transform: none;
  }

  .eml-comparison__transition {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .eml-comparison__transition span {
    display: block;
  }

  .eml-comparison__transition i {
    width: 48px;
    height: 48px;
    transform: rotate(90deg);
  }

  .eml-statement {
    padding-block: 100px;
  }

  .eml-statement h2 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .eml-qr-flow {
    gap: 14px;
    margin-top: 58px;
  }

  .eml-qr-flow__qr,
  .eml-qr-flow__device,
  .eml-qr-flow__screen {
    width: 64px;
    height: 64px;
    padding: 10px;
    border-radius: 17px;
  }

  .eml-qr-flow__arrow svg {
    width: 20px;
    height: 20px;
  }

  .eml-venue-grid {
    grid-template-columns: 1fr;
  }

  .eml-final {
    padding-bottom: 80px;
  }

  .eml-final__panel {
    padding: 48px 24px;
    border-radius: 30px;
  }

  .eml-final__panel > p {
    font-size: 16px;
  }

  .eml-final__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .eml-final__mark {
    right: -10%;
  }

  .eml-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eml-footer__top nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .eml-footer__bottom {
    grid-template-columns: 1fr auto;
    padding-block: 20px;
  }

  .eml-footer__bottom > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .eml-hero__actions .eml-button {
    width: 100%;
  }

  .eml-demo__cta .eml-button {
    width: 100%;
  }

  .eml-floating-card--updated {
    bottom: 15%;
    min-width: 145px;
  }

  .eml-qr-card {
    min-width: 155px;
  }

  .eml-demo-note {
    padding: 16px;
  }

  .eml-venue-card > a {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0 16px;
    min-height: 270px;
    padding: 18px;
  }

  .eml-venue-card__visual {
    min-height: 230px;
    border-radius: 18px;
  }

  .eml-venue-card__visual i {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .eml-venue-card__meta {
    margin-top: 38px;
    font-size: 7px;
  }

  .eml-venue-card__copy strong {
    font-size: 25px;
  }

  .eml-venue-card__copy small {
    font-size: 11px;
  }

  .eml-final__actions .eml-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .eml-container {
    width: min(100% - 32px, 620px);
  }

  .eml-nav-toggle__label {
    display: none;
  }

  .eml-hero__copy h1 {
    font-size: clamp(45px, 14.4vw, 58px);
  }

  .eml-feature-strip li {
    min-height: 48px;
    font-size: 10px;
  }

  .eml-floating-card--language {
    top: 14%;
    right: -4px;
  }

  .eml-floating-card--updated {
    right: -4px;
    min-width: 138px;
    padding: 9px;
  }

  .eml-floating-card--updated strong {
    max-width: 82px;
  }

  .eml-qr-card {
    left: -4px;
    grid-template-columns: 40px 1fr;
    min-width: 144px;
    padding: 9px;
  }

  .eml-phone {
    border-radius: 42px;
  }

  .eml-phone__screen {
    padding-inline: 11px;
    border-radius: 35px;
  }

  .eml-beyond__sticky {
    min-height: 650px;
  }

  .eml-beyond__signal {
    max-width: 150px;
  }

  .eml-admin-preview__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .eml-admin-preview__stats {
    gap: 5px;
  }

  .eml-admin-preview__stats > div {
    padding: 8px;
  }

  .eml-admin-preview__stats strong {
    font-size: 20px;
  }

  .eml-comparison-card {
    padding: 25px 22px;
  }

  .eml-qr-flow {
    gap: 9px;
  }

  .eml-qr-flow__qr,
  .eml-qr-flow__device,
  .eml-qr-flow__screen {
    width: 58px;
    height: 58px;
    padding: 9px;
  }

  .eml-venue-card > a {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0 13px;
    min-height: 250px;
    padding: 15px;
  }

  .eml-venue-card__visual {
    min-height: 220px;
  }

  .eml-venue-card__visual i {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .eml-venue-card__copy strong {
    font-size: 22px;
  }
}

@media (max-width: 340px) {
  .eml-container {
    width: calc(100% - 28px);
  }

  .eml-hero__copy h1 {
    font-size: 43px;
  }

  .eml-feature-strip li {
    gap: 5px;
    padding-inline: 4px;
    font-size: 9px;
  }

  .eml-feature-strip li:first-child,
  .eml-feature-strip li:nth-child(3) {
    padding-left: 4px;
  }

  .eml-floating-card--language {
    display: none;
  }

  .eml-floating-card--updated {
    bottom: 13%;
  }

  .eml-qr-card {
    bottom: 5%;
  }

  .eml-phone__story {
    min-height: 150px;
  }

  .eml-phone__item:nth-child(3) {
    display: none;
  }

  .eml-phone__powered {
    padding-top: 6px;
  }

  .eml-beyond__sticky {
    min-height: 590px;
  }

  .eml-beyond__signal {
    bottom: 10%;
    font-size: 8px;
  }

  .eml-product-feature {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 21px 17px;
  }

  .eml-product-feature:hover,
  .eml-product-feature.is-active {
    padding-left: 17px;
  }

  .eml-product-feature h3 {
    font-size: 24px;
  }

  .eml-admin-preview__actions {
    grid-template-columns: 1fr;
  }

  .eml-qr-flow__arrow {
    display: none;
  }

  .eml-qr-flow {
    justify-content: space-between;
  }

  .eml-venue-card > a {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 235px;
    padding: 13px;
  }

  .eml-venue-card__visual {
    min-height: 205px;
  }

  .eml-venue-card__copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eml-page *,
  .eml-page *::before,
  .eml-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .eml-motion-ready [data-eml-reveal] {
    opacity: 1;
    transform: none;
  }
}
