/* Index page â€” layout fixes & responsive overrides */

:root {
  --amp-nav-height:101px;
}

.amp-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
}

.amp-page > .amp-section:not(.amp-footer):not(.amp-nav):last-of-type {
  flex: 1 1 auto;
}

.amp-container {
  width: 90%;
  max-width: 1600px;
  margin-inline: auto;
  box-sizing: border-box;
}

.amp-container > * {
  max-width: 100%;
}

.amp-centered-narrow {
  width: 100%;
  max-width: 825px;
  margin-inline: auto;
}

.amp-section--hero .amp-centered-narrow {
  max-width: 1040px;
}

/* Side gutters for hero/CTA — flex-1 on the container otherwise fills the viewport */
.amp-section--hero > .amp-container,
.amp-section--compact > .amp-container,
.amp-nav > .amp-container {
  width: 100%;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
  box-sizing: border-box;
}

.amp-page img {
  max-width: 100%;
  height: auto;
}

/* Nav */
.amp-nav {
  width: 100%;
  min-height: var(--amp-nav-height);
}

.amp-nav .amp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.amp-nav__logo-link {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.amp-nav__logo {
  width: 217px;
  max-width: min(217px, 55vw);
  height: auto;
  flex-shrink: 0;
}

.amp-nav__cta {
  flex-shrink: 0;
}

/* Hero fills viewport below header (laptop+) */
@media (min-width: 1024px) {
  .amp-hero-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
  }

  .amp-hero-stack .amp-nav {
    flex-shrink: 0;
  }

  .amp-hero-stack .amp-section--hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding-top: clamp(2rem, 4vh, 5rem);
    padding-bottom: clamp(2rem, 4vh, 5rem);
  }

  .amp-hero-stack .amp-section--hero > .amp-container {
    flex: 1 1 auto;
    width: 100%;
    max-width: 1600px;
    padding-inline: clamp(1.25rem, 5vw, 5rem);
  }
}

/* Fluid section padding */
.amp-section {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.amp-section--hero {
  padding-top: clamp(4rem, 12vw, 11.25rem);
  padding-bottom: clamp(4rem, 12vw, 11.25rem);
}

.amp-section--compact {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.amp-section--panel {
  padding: clamp(2.5rem, 6vw, 7.5rem);
}

/* Prose blocks â€” drop fixed Figma widths */
.amp-hero-title,
.amp-hero-subtitle,
.amp-cta-title,
.amp-cta-subtitle,
.amp-section-title,
.amp-faq-title {
  width: 100% !important;
  max-width: 100%;
}

.amp-hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem) !important;
  letter-spacing: -0.05em;
}

.amp-hero-subtitle,
.amp-cta-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
  line-height: 1.4 !important;
}

.amp-cta-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem) !important;
}

.amp-section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  width: 100% !important;
}

.amp-faq-title {
  font-size: clamp(2rem, 5vw, 3.75rem) !important;
  width: 100% !important;
}

.amp-section-subtitle {
  width: 100% !important;
  max-width: 48rem;
}

/* Buttons */
.amp-btn-download {
  padding: clamp(1rem, 2.5vw, 2.25rem) clamp(1.75rem, 6.5vw, 5.5rem) !important;
  gap: 1rem !important;
}

.amp-btn-download__label {
  font-size: clamp(1.75rem, 4.5vw, 3.5rem) !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

.amp-btn-download--sm {
  padding: clamp(0.85rem, 2vw, 1.75rem) clamp(1.5rem, 5vw, 4.5rem) !important;
}

.amp-btn-download--sm .amp-btn-download__label {
  font-size: clamp(1.25rem, 3.5vw, 2.75rem) !important;
}

.amp-legal {
  width: 100% !important;
  max-width: 52rem;
}

/* Features section (Figma 8383:900) — colors match Figma exactly */
.amp-features {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  gap: 0;
  background: #FFF8ED !important;
}

.amp-features__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  width: 100%;
}

.amp-features__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
  width: 100%;
}

.amp-features__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: #FEEB9A;
  border: 1px solid #43302E;
  border-radius: 100px;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #43302E;
}

.amp-features__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 54rem;
}

.amp-features__title {
  margin: 0;
  font-family: 'Young Serif', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #3D1F1C;
}

.amp-features__subtitle {
  margin: 0;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #43302E;
}

.amp-features__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.amp-features__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .amp-features__pair {
    grid-template-columns: 1fr 1fr;
  }
}

.amp-feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(67, 48, 46, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #FFF8ED;
}

.amp-feature-card--converter {
  flex-direction: column;
  background: #BAD0F7;
  border-color: rgba(45, 49, 66, 0.1);
}

@media (min-width: 960px) {
  .amp-feature-card--converter {
    flex-direction: row;
    align-items: stretch;
    min-height: 22rem;
  }
}

.amp-feature-card--splitter {
  background: #FEEB9A;
  border-color: rgba(67, 48, 46, 0.12);
}

.amp-feature-card--search {
  background: #FFF8ED;
  border-color: rgba(67, 48, 46, 0.12);
}

.amp-feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  flex: 1 1 auto;
}

.amp-feature-card__body--stack {
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 1.75rem);
}

.amp-feature-card__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amp-feature-card__pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  background: #FFF8ED;
  border: 1px solid rgba(67, 48, 46, 0.2);
  font-family: 'Darumadrop One', Helvetica, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #43302E;
}

.amp-feature-card__pill--dark {
  background: #3D1F1C;
  border-color: transparent;
  color: #FEEB9A;
}

.amp-feature-card--search .amp-feature-card__pill {
  background: #FEEB9A;
}

.amp-feature-card__title {
  margin: 0;
  font-family: 'Young Serif', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #2D3142;
}

.amp-feature-card--splitter .amp-feature-card__title,
.amp-feature-card--search .amp-feature-card__title {
  color: #3D1F1C;
}

.amp-feature-card__text {
  margin: 0;
  max-width: 36rem;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(45, 49, 66, 0.65);
}

.amp-feature-card--splitter .amp-feature-card__text,
.amp-feature-card--search .amp-feature-card__text {
  color: rgba(67, 48, 46, 0.7);
}

.amp-feature-card__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding-top: 0.5rem;
}

.amp-feature-card__file {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(45, 49, 66, 0.12);
  border-radius: 14px;
}

.amp-feature-card__file-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.75rem;
  border-radius: 4px;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.4375rem;
  line-height: 1;
}

.amp-feature-card__file-badge--pdf {
  background: #558DFD;
  color: #FFFFFF;
}

.amp-feature-card__file-badge--doc {
  background: #2D3142;
  color: #FEEB9A;
}

.amp-feature-card__file-name {
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  color: #2D3142;
}

.amp-feature-card__flow-line {
  display: none;
  width: 1.25rem;
  height: 1px;
  background: rgba(45, 49, 66, 0.3);
}

@media (min-width: 640px) {
  .amp-feature-card__flow-line {
    display: block;
  }
}

.amp-feature-card__flow-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.amp-feature-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0.25rem 0 0;
  list-style: none;
}

.amp-feature-card__chips li {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: #C1DBE8;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #2D3142;
}

.amp-feature-card__chips--muted li {
  background: rgba(61, 31, 28, 0.1);
  color: #3D1F1C;
  font-size: 0.6875rem;
}

.amp-feature-card__chips--soft li {
  background: rgba(254, 235, 154, 0.6);
  border: 1px solid rgba(67, 48, 46, 0.1);
  color: #43302E;
  font-size: 0.6875rem;
}

.amp-feature-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 0;
  background: #A8C4F0;
  min-height: 12rem;
}

@media (min-width: 960px) {
  .amp-feature-card__media {
    width: min(34%, 554px);
    flex-shrink: 0;
    padding: 2rem 1.5rem 0;
  }
}

.amp-feature-card__media img {
  width: min(100%, 220px);
  height: auto;
  display: block;
}

.amp-feature-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 0;
  min-height: 12rem;
  background: #F5DB6B;
}

.amp-feature-card--splitter .amp-feature-card__visual {
  background: #F5DB6B;
}

.amp-feature-card__visual--search {
  background: #FFEDBB;
}

.amp-feature-card__visual img {
  width: 100%;
  max-width: 36rem;
  height: auto;
  display: block;
}

/* FAQ */
.amp-faq-item {
  gap: 1rem !important;
}

.amp-faq-item > img {
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.amp-faq-item .gap-10 {
  gap: 1rem !important;
}

/* Footer */
.amp-footer {
  width: 100% !important;
  max-width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}

.amp-footer .amp-container {
  padding-inline: clamp(1.25rem, 5vw, 5rem);
  box-sizing: border-box;
}

.amp-page--about .amp-about-intro .amp-container,
.amp-page--about .amp-about-story .amp-container {
  padding-inline: clamp(1.25rem, 5vw, 5rem);
  box-sizing: border-box;
}

.amp-footer__logo {
  width: min(414.64px, 85vw);
  height: auto;
}

.amp-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  width: 100%;
}

.amp-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  max-width: 100%;
}

.amp-footer__links a {
  color: #fff;
  text-decoration: none;
}

.amp-footer__links a:hover {
  color: #93C5FD;
}

.amp-footer__links > * {
  white-space: nowrap;
}

.amp-footer__copy {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .amp-nav {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .amp-nav__cta button {
    padding: 0.875rem 1.25rem !important;
  }

  .amp-nav__cta button span {
    font-size: 0.95rem !important;
  }

  .amp-btn-download__label {
    white-space: normal;
    text-align: center;
  }

  .amp-footer__copy {
    white-space: normal;
    text-align: left;
    width: 100%;
  }

  .amp-footer__bar {
    flex-direction: column;
  }
}

/* About page (the-team.html) */
.amp-about-intro {
  padding-top: clamp(3rem, 8vw, 7.5rem);
  padding-bottom: clamp(3rem, 8vw, 7.5rem);
}

.amp-about-intro__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  width: 100%;
}

.amp-about-intro__title-col {
  flex: 1 1 280px;
  max-width: 631px;
}

.amp-about-intro__title {
  margin: 0;
  font-family: 'Young Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #1B3A5C;
}

.amp-about-intro__content-col {
  flex: 1 1 280px;
  max-width: 633px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.amp-about-intro__lead {
  margin: 0;
  width: 100%;
  max-width: 633px;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: #1B3A5C;
}

.amp-about-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
  max-width: 633px;
}

.amp-about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.amp-about-stat__value {
  font-family: 'Darumadrop One', Helvetica, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: #C5DFF0;
}

.amp-about-stat__label {
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #1B3A5C;
  white-space: nowrap;
}

.amp-about-story {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.amp-about-story__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  width: 100%;
}

.amp-about-story__text {
  flex: 1 1 280px;
  max-width: 628px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.amp-about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.amp-about-story__eyebrow {
  margin: 0;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1B3A5C;
}

.amp-about-story__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}

.amp-about-story__heading-why {
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 2.25rem;
  letter-spacing: -0.04em;
  color: #1B3A5C;
}

.amp-about-story__wordmark {
  width: 150px;
  height: 36px;
  flex-shrink: 0;
}

.amp-about-story__heading-q {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: -0.04em;
  color: #1B3A5C;
}

.amp-about-story__body {
  margin: 0;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: -0.04em;
  color: #1B3A5C;
}

.amp-about-quote {
  flex: 1 1 280px;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding: 2rem 1.5625rem;
  background-color: #D6E8F5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.amp-about-quote__mark {
  flex-shrink: 0;
  width: 2.25rem;
  margin-top: -1.35rem;
  font-family: 'Darumadrop One', Helvetica, sans-serif;
  font-size: 4.5rem;
  line-height: 7.5rem;
  color: #1B3A5C;
}

.amp-about-quote__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 494px;
}

.amp-about-quote__text {
  margin: 0;
  font-family: 'Darumadrop One', Helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 400;
  color: #1B3A5C;
}

.amp-about-quote__author {
  margin: 0;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.0714em;
  color: rgba(51, 65, 85, 0.53);
}

.amp-footer--about {
  border: 1px solid #B8D4F0;
  border-top-width: 1px;
}

/* Uninstall page (who-we-are) â€” content fills viewport below header */
.amp-page--uninstall > .amp-nav {
  flex-shrink: 0;
}

.amp-page--uninstall > .amp-uninstall {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--amp-nav-height));
}

.amp-page--uninstall > .amp-uninstall > .amp-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amp-page--uninstall > .amp-footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* Legal pages (EULA, Privacy, Disclaimer) */
.amp-legal-page {
  background: #fff;
}

.amp-legal-page__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

.amp-legal-page__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.amp-legal-page__title {
  margin: 0;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: normal;
  color: #0a0a0a;
}

.amp-legal-page__date {
  margin: 0;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: normal;
  color: #52595e;
  text-align: left;
}

.amp-legal-page__body {
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
  color: #4c4c4c;
}

.amp-legal-page__body p {
  margin: 0 0 1.3em;
}

.amp-legal-page__body p:last-child {
  margin-bottom: 0;
}

.amp-legal-page__body ul {
  margin: 0 0 1.3em;
  padding-left: 1.75rem;
  list-style-type: disc;
}

.amp-legal-page__body li {
  margin-bottom: 0.25em;
}

.amp-legal-page__body li:last-child {
  margin-bottom: 0;
}

.amp-legal-page__body a {
  color: #2563EB;
  text-decoration: underline;
}

.amp-legal-page__body a:hover {
  color: #1D4ED8;
}

/* Contact page (drop-a-line) â€” content fills viewport below header */
.amp-page--contact > .amp-nav {
  flex-shrink: 0;
}

.amp-page--contact > .amp-contact {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--amp-nav-height));
}

.amp-page--contact > .amp-contact > .amp-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amp-page--contact > .amp-footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* 404 page */
.amp-page--404 > .amp-nav {
  flex-shrink: 0;
}

.amp-page--404 > .amp-not-found {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--amp-nav-height));
}

.amp-page--404 > .amp-not-found > .amp-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
  box-sizing: border-box;
}

.amp-not-found__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.425rem;
  width: 100%;
  max-width: 48rem;
  text-align: center;
}

.amp-not-found__eyebrow {
  margin: 0;
  font-family: 'Le Monde Livre Std-DemiIt', Georgia, serif;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #334155;
}

.amp-not-found__title {
  margin: 0;
  font-family: 'Young Serif', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1B3A5C;
}

.amp-not-found__body {
  margin: 0;
  width: 100%;
  max-width: 48rem;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #334155;
}

/* Goodbye page (app-removal) */
.amp-page--goodbye > .amp-nav {
  flex-shrink: 0;
}

.amp-page--goodbye > .amp-goodbye {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--amp-nav-height));
}

.amp-page--goodbye > .amp-goodbye > .amp-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amp-page--goodbye > .amp-footer {
  flex-shrink: 0;
  margin-top: 0;
}

.amp-goodbye__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amp-goodbye__message {
  margin: 0;
  max-width: 24rem;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #334155;
  text-align: center;
}

/* Thank you page */
.amp-page--thank-you > .amp-nav {
  flex-shrink: 0;
}

.amp-page--thank-you > .amp-thank-you {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--amp-nav-height));
}

.amp-page--thank-you > .amp-thank-you > .amp-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.amp-page--thank-you > .amp-footer {
  flex-shrink: 0;
  margin-top: 0;
}

/* Under construction â€” image only, full viewport */
.amp-page--under-construction {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  background: #fff;
}

.amp-under-construction__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding: 1.5rem;
  text-align: center;
}

.amp-under-construction__image {
  width: min(248px, 70vw);
  height: auto;
}

.amp-under-construction__title {
  margin: 0;
  max-width: 60rem;
  font-family: 'Manrope', Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: normal;
  letter-spacing: -0.03em;
  color: #1B3A5C;
}

/* Compact laptop / browser zoom fixes
   Keep the hero CTA visible above the fold on common laptops at 150% scale. */
@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --amp-nav-height: 76px;
  }

  .amp-hero-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
  }

  .amp-hero-stack .amp-nav {
    min-height: var(--amp-nav-height);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    flex-shrink: 0;
  }

  .amp-nav__logo {
    width: 170px;
  }

  .amp-nav__cta button {
    padding: 0.85rem 1.35rem !important;
    gap: 0.5rem !important;
  }

  .amp-nav__cta button span {
    font-size: 1rem !important;
    letter-spacing: -0.03em !important;
  }

  .amp-hero-stack .amp-section--hero {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(1rem, 3vh, 1.75rem) !important;
    padding-bottom: clamp(1rem, 3vh, 1.75rem) !important;
  }

  .amp-hero-stack .amp-section--hero > .amp-container {
    width: min(92%, 980px);
  }

  .amp-section--hero .amp-container,
  .amp-section--hero .amp-container > .flex,
  .amp-centered-narrow,
  .amp-centered-narrow > .flex {
    gap: clamp(1rem, 3vh, 1.75rem) !important;
  }

  .amp-section--hero .inline-flex.items-center.justify-center.gap-4.px-4.py-2 {
    padding: 0.4rem 0.85rem !important;
  }

  .amp-section--hero .inline-flex.items-center.justify-center.gap-4.px-4.py-2 > div {
    font-size: 0.8rem !important;
    line-height: 1rem !important;
    letter-spacing: 0.08em !important;
  }

  .amp-hero-title {
    font-size: clamp(2.25rem, 5.2vw, 3rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
    margin: 0;
  }

  .amp-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
    line-height: 1.3 !important;
    margin: 0;
  }

  .amp-btn-download {
    padding: clamp(1rem, 2.5vh, 1.2rem) clamp(2rem, 7vw, 4.25rem) !important;
    gap: 0.75rem !important;
  }

  .amp-btn-download__label {
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.055em !important;
  }

  .amp-btn-download img {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }

  .amp-legal {
    margin: 0;
    font-size: 0.68rem !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  :root {
    --amp-nav-height: 72px;
  }

  .amp-hero-stack {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
  }

  .amp-hero-stack .amp-nav {
    min-height: var(--amp-nav-height);
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .amp-nav__logo {
    width: 165px;
  }

  .amp-nav__cta button {
    padding: 0.75rem 1.25rem !important;
  }

  .amp-hero-stack .amp-section--hero {
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .amp-section--hero .amp-container,
  .amp-section--hero .amp-container > .flex,
  .amp-centered-narrow,
  .amp-centered-narrow > .flex {
    gap: 1rem !important;
  }

  .amp-hero-title {
    font-size: clamp(2rem, 4.6vw, 2.75rem) !important;
    line-height: 1.02 !important;
  }

  .amp-hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .amp-btn-download {
    padding: 0.9rem 3rem !important;
  }

  .amp-btn-download__label {
    font-size: 1.9rem !important;
    line-height: 1 !important;
  }
}