@import url("https://fonts.googleapis.com/css2?family=Droid+Serif:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --ink: #34495e;
  --muted: #687583;
  --soft: #f8f9fb;
  --aqua: #14d4f4;
  --mint: #3be8b0;
  --coral: #ff6c5f;
  --pink: #ff4f81;
  --plum: #623aa2;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(52, 73, 94, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  width: min(1140px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 28px;
}

.site-header.is-open {
  position: fixed;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 176px;
  height: 32px;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 8px 16px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
}

.nav-links .nav-cta {
  border-color: var(--white);
  background: var(--white);
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-color: #ff8f5f;
  background-image: radial-gradient(circle farthest-corner at 83% -23%, #ff8f5f, #ff6c5f);
}

.loop-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/loop.svg");
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.56;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(560px, 1fr);
  align-items: center;
  gap: 56px;
  min-height: 720px;
  padding-top: 86px;
}

.hero-copy {
  color: var(--white);
}

.hero-copy h1 {
  margin: 0 0 32px;
  max-width: 440px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(52, 73, 94, 0.18);
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--white);
  border-radius: 3px;
  padding: 8px 30px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(52, 73, 94, 0.16);
}

.button-light {
  color: var(--white);
}

.microcopy {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.82;
}

.microcopy span {
  padding-inline: 7px;
}

.screen-stage {
  position: relative;
  align-self: end;
  padding-bottom: 56px;
}

.screen-shell {
  position: relative;
  aspect-ratio: 944 / 620;
  width: min(944px, 64vw);
  min-width: 560px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.screen-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.screen-shot.is-active {
  opacity: 1;
  transform: translateY(0);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.slide-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.slide-dots .is-active {
  background: var(--white);
}

.clients {
  min-height: 126px;
  display: flex;
  align-items: center;
  background: var(--white);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  align-items: center;
  gap: 34px;
}

.client-strip img {
  max-height: 50px;
  margin-inline: auto;
  opacity: 0.72;
  filter: grayscale(1);
}

.features {
  padding: 82px 0 78px;
  background: var(--white);
}

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

.feature-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
}

.feature-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.rule {
  width: min(1140px, calc(100% - 42px));
  height: 1px;
  margin: 0 auto;
  background: #e9edf1;
}

.testimonials {
  padding: 74px 0 86px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px;
}

.quote-card {
  margin: 0;
}

.quote-card blockquote {
  margin: 0 0 28px;
  color: #4a5967;
  font-family: "Droid Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.8;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 14px;
}

.quote-card figcaption img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
}

.quote-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0 74px;
  background-image: radial-gradient(circle farthest-corner at 12% -8%, #f97794, #623aa2);
  color: var(--white);
  text-align: center;
}

.cta-loop {
  background-position: 50% 83%;
  box-shadow: inset 0 1px 8px rgba(52, 73, 94, 0.32);
}

.cta-panel {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-panel h2 {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}

.cta-panel p {
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.site-footer {
  padding: 70px 0 34px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
}

.footer-grid a {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--aqua);
}

.footer-end {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eef1f4;
  color: #9aa5af;
  font-size: 12px;
}

.footer-end img {
  width: 132px;
  height: 24px;
  object-fit: contain;
}

.footer-end p {
  margin: 0;
}

.page-header {
  position: absolute;
}

.subhero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--coral);
  background-image: radial-gradient(circle farthest-corner at 83% -23%, #ff8f5f, #ff6c5f);
  color: var(--white);
}

.subhero-purple {
  background-image: radial-gradient(circle farthest-corner at 12% -8%, #f97794, #623aa2);
}

.subhero-mint {
  background-color: var(--mint);
  background-image: radial-gradient(circle farthest-corner at 18% 105%, #14d4f4, #3be8b0);
}

.subhero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.subhero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.06;
}

.subhero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.page-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

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

.pricing-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid #e7edf2;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(52, 73, 94, 0.08);
}

.pricing-card.is-featured {
  border-color: transparent;
  background-image: radial-gradient(circle farthest-corner at 12% -8%, #f97794, #623aa2);
  color: var(--white);
  transform: translateY(-12px);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h2,
.contact-copy h2,
.update-list h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.pricing-card.is-featured h2,
.pricing-card.is-featured .plan-label {
  color: var(--white);
}

.price {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 28px;
  font-weight: 800;
}

.pricing-card.is-featured .price,
.pricing-card.is-featured p {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card > p:not(.plan-label):not(.price) {
  min-height: 100px;
  color: var(--muted);
}

.button-solid {
  border-color: transparent;
  background-image: linear-gradient(50deg, #ff6c5f 17%, #ff4f81);
  color: var(--white);
}

.button-outline {
  border-color: #d9e1e8;
  color: var(--muted);
}

.update-list {
  display: grid;
  gap: 24px;
  max-width: 860px;
}

.update-list article {
  padding: 28px 0;
  border-bottom: 1px solid #e9edf1;
}

.update-list time {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.update-list p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-copy .button {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid #e7edf2;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(52, 73, 94, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce5ec;
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.compact-footer {
  padding-top: 34px;
}

.footer-end a {
  color: var(--muted);
  font-size: 13px;
}

.footer-end a:hover {
  color: var(--aqua);
}

.help-header {
  min-height: 330px;
  padding-top: 28px;
  background-color: #ff8f5f;
  background-image: radial-gradient(circle farthest-corner at 83% -23%, #ff8f5f, #ff6c5f);
  color: var(--white);
}

.help-header-small {
  min-height: 96px;
}

.help-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.help-nav nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.help-signup {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  padding: 7px 14px;
}

.help-hero {
  padding: 72px 0 58px;
}

.help-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.1;
}

.help-search {
  display: block;
  max-width: 760px;
}

.help-search input {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 6px;
  padding: 0 24px;
  box-shadow: 0 18px 42px rgba(52, 73, 94, 0.18);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.help-main {
  min-height: 58vh;
  padding: 48px 0 80px;
  background: #f7f9fb;
}

.help-category-grid {
  display: grid;
  grid-template-columns: minmax(280px, 680px);
}

.help-category {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border: 1px solid #e4ebf1;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(52, 73, 94, 0.06);
}

.help-category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #eefbfb;
  color: var(--aqua);
  font-size: 24px;
  font-weight: 800;
}

.help-category h2,
.help-category p {
  grid-column: 2;
  margin: 0;
}

.help-category h2 {
  color: var(--ink);
  font-size: 22px;
}

.help-category p,
.help-category span {
  color: var(--muted);
  font-size: 14px;
}

.help-collection,
.help-article {
  max-width: 820px;
  padding: 44px;
  border: 1px solid #e4ebf1;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(52, 73, 94, 0.06);
}

.help-breadcrumb {
  margin-bottom: 24px;
  color: #99a7b4;
  font-size: 13px;
  font-weight: 700;
}

.help-breadcrumb a,
.help-article a {
  color: var(--aqua);
}

.help-collection h1,
.help-article h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.12;
}

.help-collection > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.help-authors,
.article-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a2af;
  font-size: 13px;
}

.help-authors img,
.article-byline img {
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 999px;
}

.help-authors img + img {
  margin-left: -14px;
}

.article-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #e8eef3;
}

.article-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #e8eef3;
}

.article-list h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.article-list span {
  color: #9aa7b3;
  font-size: 13px;
  white-space: nowrap;
}

.help-article {
  color: #4e5d6a;
}

.help-article .article-byline {
  margin-bottom: 34px;
}

.help-article h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.help-article p,
.help-article li {
  font-size: 17px;
  line-height: 1.78;
}

.help-article figure {
  margin: 30px 0;
}

.help-article figure img {
  border: 1px solid #e2e8ee;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(52, 73, 94, 0.1);
}

.help-article figcaption {
  margin-top: 10px;
  color: #94a2af;
  font-size: 12px;
}

.archive-note {
  border-left: 3px solid var(--aqua);
  padding: 14px 18px;
  background: #f2fbfd;
  color: var(--ink);
}

@media (max-width: 991px) {
  .container {
    width: min(728px, calc(100% - 42px));
  }

  .site-header {
    padding-top: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 21px;
    right: 21px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px;
    border-radius: 6px;
    background-image: linear-gradient(223deg, rgba(255, 143, 95, 0.97), rgba(255, 108, 95, 0.97));
    box-shadow: 0 18px 42px rgba(52, 73, 94, 0.18);
    text-align: center;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero {
    min-height: 710px;
  }

  .hero-grid {
    display: flex;
    min-height: 710px;
    padding-top: 92px;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
  }

  .hero-copy {
    max-width: 520px;
    margin-top: 42px;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.28;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .screen-stage {
    width: 100%;
    padding-bottom: 0;
  }

  .screen-shell {
    width: 100%;
    min-width: 0;
  }

  .features {
    padding-top: 54px;
  }

  .feature-grid {
    gap: 34px;
  }

  .testimonial-grid {
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card,
  .pricing-card.is-featured {
    min-height: 0;
    transform: none;
  }

  .pricing-card > p:not(.plan-label):not(.price) {
    min-height: 0;
  }

  .help-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
  }

  .hero-grid {
    min-height: 100vh;
  }

  .client-strip {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    gap: 16px;
  }

  .client-strip img {
    max-height: 38px;
  }

  .feature-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
  }

  .feature-card img {
    margin-inline: auto;
  }

  .help-category {
    grid-template-columns: 1fr;
  }

  .help-category h2,
  .help-category p {
    grid-column: auto;
  }

  .article-list a {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .container {
    width: calc(100% - 30px);
  }

  .brand {
    width: 145px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid {
    min-height: 620px;
    padding-top: 72px;
  }

  .hero-copy {
    margin-top: 46px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .hero-copy p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .button {
    width: 100%;
  }

  .microcopy {
    line-height: 1.7;
  }

  .screen-shell {
    aspect-ratio: 944 / 520;
  }

  .clients {
    min-height: 135px;
  }

  .client-strip {
    grid-template-columns: repeat(3, minmax(70px, 1fr));
    gap: 18px 22px;
  }

  .features {
    padding: 52px 0 36px;
  }

  .testimonials {
    padding: 52px 0 66px;
  }

  .quote-card blockquote {
    font-size: 17px;
    line-height: 1.7;
  }

  .bottom-cta {
    padding: 70px 0 86px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-end {
    justify-content: center;
    flex-direction: column;
  }

  .help-nav nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .help-collection,
  .help-article {
    padding: 28px 20px;
  }

  .help-article p,
  .help-article li {
    font-size: 16px;
  }
}
