/* ==========================================================================
   Embershot marketing site
   Rebuilt from the Wix-hosted info.embershot.com (snapshot 2026-08-19).
   Design tokens below are measured from the original render.
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;                 /* variable font, covers the whole range */
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
}

:root {
  --brand:      #ff5d20;                /* Embershot orange - JOIN NOW / CTA buttons */
  --brand-dark: #e14a12;
  --ink:        #000000;
  --muted:      #4d4d4d;                /* nav text, Login button */
  --white:      #ffffff;
  --bg-alt:     #fafafa;
  --bg-grey:    #e8e6e6;
  --rule:       #dcdcdc;

  --container:  980px;
  --header-h:   92px;

  --font: 'Montserrat', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* --------------------------------------------------------------- reset -- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; line-height: 1.3; }
p { margin: 0; }

/* Visible focus for keyboard users (the Wix original had none). */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------- utilities -- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Full-bleed section backgrounds (the original used object-fit:cover images) */
.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.btn:hover  { background: var(--brand-dark); }
.btn:active { transform: translateY(1px); }

.btn--dark  { background: var(--muted); }
.btn--dark:hover { background: #333; }

.btn--sm { padding: 0 16px; height: 32px; min-height: 32px; font-size: 12px; letter-spacing: .04em; }

/* The body CTAs in the original are a split control: a label box with the
   left corners rounded, then a 29x40 arrow box with the right corners
   rounded, divided by a hairline. */
.btn--arrow {
  padding: 0;
  height: 40px;
  min-height: 40px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  overflow: hidden;
}
.btn__label {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
}
.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 29px;
  width: 29px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, .6);
}
.btn__arrow svg { width: 16px; height: 16px; display: block; }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.site-header .container { max-width: 1158px; }   /* puts the logo at x=85 @1280, as the original */

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo img { width: 235px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav__links { display: flex; align-items: center; gap: 26px; }

.site-nav__links a {
  color: var(--muted);
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current='page'] { color: var(--brand); }

.site-nav__cta { display: flex; align-items: center; gap: 12px; }
.site-nav__cta .btn { min-width: 95px; }

/* Mobile menu toggle - hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--muted);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { margin: 0 auto; position: relative; }
.nav-toggle span::before { content: ''; position: absolute; top: -7px; }
.nav-toggle span::after  { content: ''; position: absolute; top:  7px; }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  background: #12243a;                 /* fallback behind the video */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 24px 200px;
}

.hero__title {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: 50px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .02em;
  color: #fff;
}

.hero__sub {
  max-width: 842px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  color: #fff;
}
.hero__sub + .hero__sub { margin-top: 0; }

/* The original overlays a transparent-to-black PNG gradient across the
   bottom 191px of the hero. Reproduced here as a CSS gradient - same
   result, one less request. */
.hero__scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 19px 24px 77px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0)    0%,
    rgba(0, 0, 0, .24) 15%,
    rgba(0, 0, 0, .47) 30%,
    rgba(0, 0, 0, .79) 50%,
    rgba(0, 0, 0,  1)  70%,
    rgba(0, 0, 0,  1) 100%
  );
}

.hero__scrim h2 {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badges img { width: auto; }
.store-badges .badge-apple  { height: 60px; }
.store-badges .badge-google { height: 66px; }
.store-badges a { display: block; transition: opacity .15s ease; }
.store-badges a:hover { opacity: .82; }

/* ------------------------------------------------------------- sections -- */

.section { padding: 84px 0; }

.band {                                  /* the short full-width statements */
  padding: 62px 0;
  text-align: center;
  background: var(--white);
}
.band p,
.band h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
  color: var(--brand);
}

.section-title {
  font-size: 43px;
  font-weight: 400;
  letter-spacing: .02em;
  text-align: center;
}

/* ------------------------------------------------- own your audience --- */

.audience {
  background: var(--bg-alt);
  padding: 0;
  overflow: hidden;
}

.audience__grid {
  display: grid;
  grid-template-columns: 268px 1fr;   /* 35px rule gutter + 233px text column */
  gap: 87px;
  align-items: center;
  min-height: 902px;
  max-width: none;
  padding: 0 0 0 55px;                /* rule lands at x=55, text at x=90 */
}

/* 1px full-height rule with a 3px accent segment, as in the original */
.audience__copy {
  position: relative;
  padding-left: 35px;
}
.audience__copy::before {
  content: '';
  position: absolute;
  left: 0; top: -30px; bottom: 85px;
  border-left: 1px solid var(--muted);
}
.audience__copy::after {
  content: '';
  position: absolute;
  left: -1px; top: 130px;
  height: 195px;
  border-left: 3px solid var(--muted);
}

.audience__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 33px;
}

.audience__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 59px;
}

.audience__figure { height: 100%; }
.audience__figure a { display: block; height: 100%; }
.audience__figure img {
  width: 100%;
  height: 100%;
  min-height: 902px;
  object-fit: cover;
  object-position: center;
}

/* ------------------------------------------------------------ features -- */

.features {
  padding: 84px 0 100px;
  background-color: var(--white);
  background-image: url('../img/bg-features.jpg');
}
.features .container { max-width: 1240px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-top: 8px;
}

/* 2px rules sit in the gaps between the three columns */
.feature + .feature { position: relative; }
.feature + .feature::before {
  content: '';
  position: absolute;
  left: -51px;
  top: 122px;
  height: 278px;
  border-left: 2px solid var(--rule);
}

.feature h3 {
  font-size: 43px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 34px;
  letter-spacing: .01em;
}

.feature ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.feature li {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 22px;
  padding-left: 4px;
}
.feature li::marker { color: var(--muted); }
.feature li:last-child { margin-bottom: 0; }

.features__shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  align-items: end;
  margin-top: 60px;
}
.features__shots img { width: 100%; height: auto; }
.features__shots > div:first-child { visibility: hidden; }   /* column 1 has no screenshot */

/* -------------------------------------------------------- account types -- */

.plans {
  padding: 84px 0 96px;
  background-color: var(--bg-grey);
  background-image: url('../img/bg-account-types.jpg');
  color: #fff;
}

.plans__title {
  margin: 0 0 62px 50%;              /* the original title box starts at page centre */
  text-align: left;
  color: #fff;
  font-size: 43px;
  line-height: 64.5px;
}

.plans__row,
.plans__ctas {
  display: grid;
  grid-template-columns: repeat(2, 245px);
  justify-content: center;
}

.plans__ctas { padding: 51px 0; }
.plans__ctas > div { display: flex; justify-content: center; }
.plans__ctas + .plans__row { margin-top: 31px; }

/* Translucent black panel over the photograph, hairline white frame. */
.plan {
  background: rgba(0, 0, 0, .47);
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 28px 9px 30px;
  min-height: 655px;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #fff;
}

/* The original positions each row at a fixed offset from the card top, so the
   four cards line up regardless of how much copy each one carries. The
   min-heights below reproduce those slots. */
.plan__name {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}

.plan__for {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  margin-top: 8px;
  min-height: 133px;
}

.plan__price {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--brand);
  margin: 0 -4px;                    /* matches the wider price box in the original */
  min-height: 61px;
  padding-bottom: 12px;              /* keeps a 2-line price clear of the blurb */
}
.plan__price small { font-size: 12px; }

.plan__blurb {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  min-height: 163px;
}

.plan__features {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}
.plan__features li {
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 15px;
  padding-left: 34px;
}
.plan__features li:last-child { margin-bottom: 0; }
.plan__features svg {
  position: absolute;
  left: 8px;
  top: 1px;
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.plan__features li small {
  display: block;
  font-size: 10px;
  line-height: 1.4;
}

.plans__footer {
  margin-top: 74px;
  text-align: center;
}

.plans__compare {
  display: inline-block;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: opacity .15s ease;
}
.plans__compare:hover { opacity: .82; }

.plans__help {
  margin-top: 36px;
  font-size: 26px;
  line-height: 1.45;
  color: #fff;
}
.plans__help a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------------------------------------- contact -- */

.contact {
  padding: 76px 0;
  background-color: var(--bg-alt);
  background-image: url('../img/bg-contact.jpg');
  color: var(--muted);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 54px 420px;   /* email box ~402px wide, as the original */
  gap: 0 18px;
  align-items: center;
}

.contact__title {
  font-size: 43px;
  line-height: 64.5px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact__prompts p {
  font-size: 30px;
  line-height: 48px;
  color: var(--muted);
}

.contact__icon { display: block; width: 54px; }
.contact__icon img { width: 54px; height: 53px; }

.contact__email {
  font-size: 30px;
  line-height: 54px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease;
}
.contact__email:hover { color: var(--brand); }

/* -------------------------------------------------------------- footer -- */

.site-footer {
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer__links a {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease;
}
.site-footer__links a:hover { color: var(--brand); }

.site-footer__badges { display: flex; align-items: center; gap: 12px; }
.site-footer__badges img { width: auto; }
.site-footer__badges .badge-apple  { height: 48px; }
.site-footer__badges .badge-google { height: 53px; }

.site-footer__legal {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--muted);
}

/* --------------------------------------------------------- press page -- */

.page-head {
  padding: 64px 0 8px;
  text-align: center;
}
.page-head h1 {
  font-size: 43px;
  font-weight: 400;
  letter-spacing: .02em;
}

.press {
  padding: 40px 0 90px;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.press-item { display: flex; flex-direction: column; }

.press-item__logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.press-item__logo img { max-height: 100px; width: auto; }

.press-item__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color .15s ease;
}
.press-item__title:hover { color: var(--brand); }

.press-item__quote {
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
}
.press-item__quote p + p { margin-top: 1em; }

/* ---------------------------------------------------------- legal pages -- */

.legal {
  padding: 56px 0 90px;
}

.legal__body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.legal__body h1 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.legal__body h2,
.legal__body h3,
.legal__body h4,
.legal__body h5,
.legal__body h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 32px 0 12px;
}

.legal__body p { margin: 0 0 1.15em; }
.legal__body p:last-child { margin-bottom: 0; }

.legal__body ul,
.legal__body ol { margin: 0 0 1.15em; padding-left: 1.4em; }
.legal__body li { margin-bottom: .5em; }

.legal__body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.legal__body strong, .legal__body b { font-weight: 600; }

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 1024px) {
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding: 64px 24px;
  }
  .audience__figure img { min-height: 0; height: auto; object-fit: contain; }
  .audience__copy::after { display: none; }

  .features .container { max-width: var(--container); }
  .features__grid { grid-template-columns: 1fr; gap: 44px; }
  .feature + .feature::before { display: none; }
  .features__shots { grid-template-columns: repeat(2, 1fr); gap: 44px; margin-top: 44px; }
  .features__shots > div:first-child { display: none; }

  .plans__title { margin-left: 0; text-align: center; }

  .press__grid { grid-template-columns: 1fr; gap: 60px; }
  .press-item__logo { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .site-nav__links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    display: none;
  }
  .site-nav__links[data-open='true'] { display: flex; }
  .site-nav__links a { padding: 13px 24px; font-size: 17px; }

  .nav-toggle { display: block; }
  .site-nav { gap: 10px; }

  .hero { min-height: 620px; }
  .hero__title { font-size: 34px; line-height: 1.35; }
  .hero__sub   { font-size: 21px; line-height: 1.5; }
  .hero__body  { padding: 40px 20px 190px; }
  .hero__scrim { padding: 18px 20px 30px; }

  .band p, .band h2 { font-size: 22px; line-height: 1.45; }
  .section-title, .feature h3, .contact__title { font-size: 32px; }
  .audience__title { font-size: 30px; }
  .plans__title { font-size: 32px; line-height: 1.3; }

  .plans__row, .plans__ctas { grid-template-columns: minmax(0, 300px); }
  .plans__ctas { padding: 26px 0; }
  .plans__ctas + .plans__row { margin-top: 0; }
  .plan { min-height: 0; padding: 26px 18px 30px; }
  .plan__for   { min-height: 0; }
  .plan__price { min-height: 0; margin: 18px 0 0; }
  .plan__blurb { min-height: 0; margin-top: 10px; }
  .plan__features { margin-top: 20px; }
  .plans__compare { font-size: 26px; }

  .contact__grid { grid-template-columns: 1fr; gap: 22px; justify-items: center; text-align: center; }
  .contact__prompts p { font-size: 22px; line-height: 36px; }
  .contact__title { line-height: 1.3; margin-bottom: 14px; }

  .site-footer__inner { justify-content: center; text-align: center; }
  .site-footer__links { justify-content: center; }
}

@media (max-width: 700px) {
  /* Keep the whole header on one line: shrink the logo and the two pills. */
  .site-header .container { padding: 0 16px; }
  .site-header__inner { gap: 8px; }
  .site-header__logo img { width: 124px; }
  .site-nav { gap: 6px; }
  .site-nav__cta { gap: 6px; }
  .site-nav__cta .btn {
    min-width: 0;
    height: 30px;
    padding: 0 11px;
    font-size: 11px;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .nav-toggle { width: 36px; height: 36px; }
}

@media (max-width: 560px) {
  .hero { min-height: 560px; }
  .hero__title { font-size: 26px; }
  .hero__sub   { font-size: 17px; line-height: 1.5; }
  .hero__body  { padding: 32px 18px 176px; }
  .store-badges { gap: 12px; }
  .store-badges .badge-apple  { height: 42px; }
  .store-badges .badge-google { height: 46px; }

  .section, .audience, .features, .plans { padding: 56px 0; }
  .band { padding: 44px 0; }
  .band p, .band h2 { font-size: 20px; }
  .section-title, .feature h3, .contact__title, .plans__title { font-size: 27px; }
  .feature li { font-size: 16px; }

  .plans__compare { font-size: 21px; }
  .plans__help { font-size: 17px; }
  .contact__prompts p { font-size: 20px; line-height: 32px; }
  .contact__email { font-size: 20px; line-height: 1.4; overflow-wrap: anywhere; }

  .features__shots { grid-template-columns: 1fr; }
  .site-footer__links { gap: 14px; }
  .site-footer__links a { font-size: 14px; }
}

/* Respect reduced-motion: stop the looping hero video. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .hero {
    background-image: url('../img/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
  * { animation: none !important; transition: none !important; }
}

@media print {
  .site-header, .hero__video, .store-badges, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
}
