:root {
  --yellow: #FFD65A;
  --yellow-dark: #FFD65A;
  --charcoal: #151515;
  --ink: #222222;
  --muted: #686868;
  --line: #e7e7e7;
  --soft: #f6f6f3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5.6vw, 5.35rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: var(--charcoal);
  display: inline-flex;
  font-weight: 750;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  border-radius: 8px;
  height: 40px;
  width: 40px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: #555555;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 9px 12px;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--yellow);
  color: var(--charcoal);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

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

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 48px 24px 44px;
}

.hero-copy p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin-top: 26px;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.app-store-button,
.primary-button,
.secondary-button,
.text-button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.app-store-button {
  background: var(--charcoal);
  color: var(--white);
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  min-width: 192px;
}

.app-store-button span {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.78;
}

.app-store-button strong {
  font-size: 1rem;
  white-space: nowrap;
}

.primary-button {
  background: var(--yellow);
  color: var(--charcoal);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--charcoal);
}

.secondary-link,
.text-button {
  color: var(--charcoal);
}

.text-button {
  border: 1px solid var(--line);
  margin-top: 26px;
}

.hero-media {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 560px;
  position: relative;
}

.hero-media::before {
  background: var(--yellow);
  border-radius: 26px;
  content: "";
  height: min(62vw, 460px);
  position: absolute;
  right: 8%;
  top: 12%;
  transform: rotate(-4deg);
  width: min(62vw, 460px);
}

.icon-tile {
  background: var(--yellow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  box-shadow: var(--shadow);
  left: 0;
  padding: 18px;
  position: absolute;
  top: 64px;
  transform: rotate(-8deg);
  width: 132px;
  z-index: 3;
}

.icon-tile img {
  border-radius: 18px;
}

.phone {
  background: #0f0f0f;
  border: 8px solid #0c0c0c;
  border-radius: 38px;
  box-shadow: var(--shadow);
  max-width: 286px;
  padding: 14px;
  position: relative;
  width: 100%;
}

.phone-hero {
  transform: rotate(5deg);
  z-index: 2;
}

.phone-bar {
  background: #2a2a2a;
  border-radius: 999px;
  height: 7px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 76px;
  z-index: 2;
}

.app-screen {
  background: #151515;
  border-radius: 28px;
  color: var(--white);
  min-height: 520px;
  overflow: hidden;
  padding: 38px 18px 20px;
}

.app-screen.screenshot-screen {
  background: #000000;
  padding: 0;
}

.app-screen.screenshot-screen img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.screen-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.screen-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.screen-top strong {
  color: var(--yellow);
  font-size: 1.5rem;
}

.meter-ring {
  align-items: center;
  background:
    radial-gradient(circle at center, #151515 0 48%, transparent 49%),
    conic-gradient(var(--yellow) 0 76%, #333333 76% 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 210px;
  justify-content: center;
  margin: 28px auto 22px;
  width: 210px;
}

.meter-ring span {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
}

.meter-ring small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

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

.screen-grid span,
.meter-readouts span {
  background: #252525;
  border: 1px solid #343434;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.12;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 10px 6px;
  text-align: center;
}

.meter-readouts {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.advisor-strip {
  background: var(--yellow);
  border-radius: 12px;
  color: var(--charcoal);
  margin-top: 16px;
  padding: 14px;
}

.advisor-strip p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.82rem;
  margin-top: 4px;
}

.section,
.page-hero,
.feature-detail,
.pricing-grid,
.faq-list,
.legal-copy,
.contact-grid,
.steps {
  margin: 0 auto;
  max-width: var(--max);
  padding: 88px 24px;
}

.feature-band {
  background: var(--soft);
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

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

.section-heading p,
.page-hero p {
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 760px;
}

.feature-strip,
.tool-grid,
.pricing-mini,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.feature-strip article,
.tool-grid article,
.price-card,
.contact-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.feature-strip h3,
.tool-grid h2,
.price-card h2,
.contact-grid h2 {
  margin-top: 18px;
}

.feature-strip p,
.tool-grid p,
.contact-grid p {
  margin-top: 10px;
}

.mini-shot {
  border-radius: var(--radius);
  height: 92px;
  overflow: hidden;
}

.histogram-shot,
.histogram-panel {
  align-items: end;
  background: #161616;
  display: flex;
  gap: 8px;
  padding: 14px;
}

.histogram-shot span,
.histogram-panel span {
  background: var(--yellow);
  border-radius: 4px 4px 0 0;
  flex: 1;
}

.histogram-shot span:nth-child(1),
.histogram-panel span:nth-child(1) {
  height: 28%;
}

.histogram-shot span:nth-child(2),
.histogram-panel span:nth-child(2) {
  height: 68%;
}

.histogram-shot span:nth-child(3),
.histogram-panel span:nth-child(3) {
  height: 88%;
}

.histogram-shot span:nth-child(4),
.histogram-panel span:nth-child(4) {
  height: 48%;
}

.histogram-shot span:nth-child(5),
.histogram-panel span:nth-child(5) {
  height: 34%;
}

.histogram-panel span:nth-child(6) {
  height: 58%;
}

.false-color-shot,
.false-color-panel {
  background:
    linear-gradient(135deg, rgba(255, 214, 90, 0.9), transparent 38%),
    linear-gradient(45deg, #119dff, #4acb70 38%, #FFD65A 62%, #ff4545);
}

.ai-shot {
  align-items: center;
  background: var(--yellow);
  color: var(--charcoal);
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  justify-content: center;
}

.sync-shot {
  background:
    radial-gradient(circle at 26% 50%, var(--yellow) 0 18%, transparent 19%),
    radial-gradient(circle at 72% 32%, #222222 0 13%, transparent 14%),
    radial-gradient(circle at 72% 72%, #777777 0 13%, transparent 14%),
    linear-gradient(90deg, transparent 0 30%, #d7d7d7 31% 33%, transparent 34% 66%, #d7d7d7 67% 69%, transparent 70%);
  background-color: #f1f1f1;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr 1fr;
}

.split-section p {
  font-size: 1.08rem;
  margin-top: 18px;
}

.workflow-preview {
  display: grid;
  gap: 12px;
}

.workflow-preview div,
.flow-card,
.pro-list span {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  padding: 18px;
}

.workflow-preview strong,
.steps strong {
  align-items: center;
  background: var(--yellow);
  border-radius: 999px;
  color: var(--charcoal);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  min-width: 36px;
}

.pricing-preview {
  text-align: center;
}

.pricing-preview .section-heading {
  margin: 0 auto;
}

.pricing-mini {
  grid-template-columns: repeat(2, 1fr);
  margin: 36px auto 26px;
  max-width: 760px;
}

.pricing-mini article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.pricing-mini .highlight {
  background: var(--yellow);
}

.pricing-mini .highlight p {
  color: rgba(0, 0, 0, 0.72);
}

.page-hero {
  padding-bottom: 52px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.feature-detail {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.86fr 1.14fr;
}

.feature-detail.reverse {
  grid-template-columns: 1.14fr 0.86fr;
}

.screenshot-card {
  background: var(--yellow);
  border-radius: 24px;
  display: grid;
  justify-items: center;
  padding: 34px;
}

.check-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 10px;
}

.tool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wide-shot {
  border-radius: var(--radius);
  height: 190px;
  overflow: hidden;
}

.waveform-panel {
  align-items: center;
  background: #151515;
  display: grid;
  padding: 18px;
}

.waveform-panel path {
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-width: 7;
}

.waveform-panel path + path {
  opacity: 0.42;
  stroke: #ffffff;
}

.advisor-screen label {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 14px;
}

.advisor-screen div {
  background: #252525;
  border: 1px solid #343434;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 6px;
  padding: 10px;
}

.advisor-screen button {
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  color: var(--charcoal);
  font: inherit;
  font-weight: 800;
  margin-top: 16px;
  padding: 12px;
  width: 100%;
}

.advisor-screen p {
  background: #242424;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 16px;
  padding: 12px;
}

.recommendation {
  background: var(--soft);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  margin-top: 24px;
  padding: 20px;
}

.recommendation p {
  margin-top: 8px;
}

.pro-list {
  display: grid;
  gap: 12px;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 24px;
}

.steps article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.steps h2 {
  font-size: 1.5rem;
  margin-top: 20px;
}

.steps p {
  margin-top: 12px;
}

.flow-visual {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 62px 1fr 62px 1fr;
}

.flow-card {
  justify-content: center;
  min-height: 110px;
  text-align: center;
}

.flow-card.yellow {
  background: var(--yellow);
  border-color: var(--yellow-dark);
  font-weight: 800;
}

.flow-arrow {
  background: var(--charcoal);
  height: 2px;
  position: relative;
}

.flow-arrow::after {
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--charcoal);
  border-top: 7px solid transparent;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 20px;
}

.price-card {
  padding: 32px;
}

.price-card.pro {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}

.price-card.pro p,
.price-card.pro .check-list {
  color: rgba(0, 0, 0, 0.74);
}

.price {
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 900;
  margin-top: 12px;
}

.price-card .primary-button,
.price-card .secondary-button {
  margin-top: 28px;
  width: 100%;
}

.price-card.pro .primary-button {
  background: var(--charcoal);
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  padding-top: 22px;
}

details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
}

details p {
  margin-top: 14px;
}

.legal-copy {
  max-width: 860px;
  padding-top: 20px;
}

.legal-copy h2 {
  font-size: 2rem;
  margin-top: 34px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-top: 14px;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 22px;
}

.contact-grid .primary-button,
.contact-grid .secondary-button {
  margin-top: 22px;
  width: 100%;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 42px auto 0;
  max-width: var(--max);
  padding: 34px 24px;
}

.site-footer p {
  margin-top: 4px;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .split-section,
  .feature-detail,
  .feature-detail.reverse,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: 520px;
  }

  .feature-strip,
  .tool-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-visual {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    height: 38px;
    justify-self: center;
    width: 2px;
  }

  .flow-arrow::after {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--charcoal);
    border-bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.9rem;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .hero,
  .section,
  .page-hero,
  .feature-detail,
  .pricing-grid,
  .faq-list,
  .legal-copy,
  .contact-grid,
  .steps {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-strip,
  .tool-grid,
  .pricing-mini,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media::before {
    height: 286px;
    width: 286px;
  }

  .icon-tile {
    left: 0;
    top: 30px;
    width: 84px;
  }

  .phone {
    max-width: 164px;
  }

  .phone-hero {
    transform: rotate(3deg);
  }

  .app-screen {
    min-height: 284px;
  }

  .meter-ring {
    height: 104px;
    margin: 20px auto 18px;
    width: 104px;
  }

  .meter-ring span {
    font-size: 1.36rem;
  }

  .screen-top strong {
    font-size: 1.08rem;
  }

  .hero .screen-grid {
    display: none;
  }

  .hero .advisor-strip {
    margin-top: 10px;
    padding: 10px;
  }

  .hero .advisor-strip p {
    font-size: 0.72rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* PhotoMeterPro final website UI */
.website-final {
  --final-bg: #000000;
  --final-panel: rgba(255, 255, 255, 0.055);
  --final-panel-strong: rgba(255, 214, 90, 0.12);
  --final-line: rgba(255, 255, 255, 0.14);
  --final-line-strong: rgba(255, 214, 90, 0.58);
  --final-text: #FFFFFF;
  --final-muted: rgba(255, 255, 255, 0.72);
  --final-accent: #FFD65A;
  --final-max: 1180px;
  background: var(--final-bg);
  color: var(--final-text);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.site-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand,
.site-nav a {
  color: #FFFFFF;
}

.nav-toggle span {
  background: #FFFFFF;
}

.website-final h1,
.website-final h2,
.website-final h3 {
  color: var(--final-text);
  letter-spacing: 0;
}

.website-final p {
  color: var(--final-muted);
}

.website-final::before {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 214, 90, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 214, 90, 0.06), transparent 72%);
  content: "";
  height: 48vh;
  inset: -12vh 0 auto;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, var(--pmp-hero-parallax-y, 0px), 0);
  will-change: transform;
  z-index: 0;
}

.website-final > * {
  position: relative;
  z-index: 1;
}

@keyframes pmp-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pmp-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-hero,
.final-section {
  margin: 0 auto;
  max-width: var(--final-max);
  padding-left: 24px;
  padding-right: 24px;
}

.final-hero {
  align-items: center;
  animation: pmp-fade-in 0.6s ease-out 0.1s both;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  min-height: 690px;
  padding-bottom: 72px;
  padding-top: 72px;
}

.final-hero-copy {
  min-width: 0;
}

.final-hero-logo {
  display: block;
  height: 72px;
  margin-bottom: 24px;
  width: 72px;
}

.final-hero-copy h1 {
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
  font-weight: 880;
  line-height: 0.98;
  max-width: 720px;
}

.final-subtitle {
  color: var(--final-text) !important;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 790;
  line-height: 1.1;
  margin-top: 22px;
  max-width: 650px;
}

.final-description {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  margin-top: 18px;
  max-width: 610px;
}

.final-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.final-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  transition:
    background-color 0.18s ease-out,
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.18s ease-out;
}

.final-button:hover {
  box-shadow: 0 10px 26px rgba(255, 214, 90, 0.16);
  transform: scale(1.05);
}

.final-button-primary {
  background: var(--final-accent);
  border: 1px solid var(--final-accent);
  color: #000000;
}

.final-button-secondary {
  background: transparent;
  border: 1px solid var(--final-accent);
  color: var(--final-text);
}

.final-button-secondary:hover {
  border-color: var(--final-line-strong);
  color: var(--final-accent);
}

.final-hero-media {
  background:
    linear-gradient(180deg, rgba(255, 214, 90, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--final-line);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: 18px;
}

.final-hero-media img {
  background: #000000;
  border-radius: 8px;
  height: min(66vh, 590px);
  object-fit: contain;
  object-position: center top;
  width: 100%;
}

.final-section {
  border-top: 1px solid var(--final-line);
  padding-bottom: 72px;
  padding-top: 72px;
}

.final-section-heading {
  transform: translate3d(0, var(--pmp-section-parallax-y, 0px), 0);
  will-change: transform;
}

.final-section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1;
}

.final-feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.final-feature-card,
.final-plan-card {
  background: var(--final-panel);
  border: 1px solid var(--final-line);
  border-radius: 8px;
  min-width: 0;
  padding: 22px;
}

.final-feature-card {
  animation: pmp-fade-up 0.5s ease-out both;
  transition:
    border-color 0.22s ease-out,
    box-shadow 0.22s ease-out,
    transform 0.22s ease-out;
}

.final-feature-card:nth-child(1) {
  animation-delay: 0.15s;
}

.final-feature-card:nth-child(2) {
  animation-delay: 0.3s;
}

.final-feature-card:nth-child(3) {
  animation-delay: 0.45s;
}

.final-feature-card:nth-child(4) {
  animation-delay: 0.6s;
}

.final-feature-card:nth-child(5) {
  animation-delay: 0.75s;
}

.final-feature-card:hover {
  border-color: var(--final-line-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.final-feature-icon {
  align-items: center;
  background: rgba(255, 214, 90, 0.1);
  border: 1px solid var(--final-line-strong);
  border-radius: 8px;
  color: var(--final-accent);
  display: inline-flex;
  font-size: 1.55rem;
  font-weight: 850;
  height: 48px;
  justify-content: center;
  transition:
    background-color 0.22s ease-out,
    border-color 0.22s ease-out,
    transform 0.22s ease-out;
  width: 48px;
}

.final-feature-card:hover .final-feature-icon {
  transform: translateY(-4px);
}

.final-feature-card h3 {
  font-size: 1.14rem;
  line-height: 1.2;
  margin-top: 18px;
}

.final-feature-card p {
  font-size: 0.98rem;
  line-height: 1.48;
  margin-top: 10px;
}

.final-pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.final-plan-card {
  display: grid;
  gap: 24px;
}

.final-plan-highlight {
  background:
    linear-gradient(180deg, var(--final-panel-strong), rgba(255, 255, 255, 0.055)),
    var(--final-panel);
  border-color: var(--final-line-strong);
}

.final-plan-card h3 {
  font-size: 1.35rem;
  font-weight: 820;
}

.final-price {
  color: var(--final-accent) !important;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 880;
  line-height: 1;
  margin-top: 12px;
}

.final-plan-card ul {
  display: grid;
  gap: 12px;
}

.final-plan-card li {
  color: var(--final-muted);
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.final-plan-card li::before {
  background: var(--final-accent);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.58em;
  width: 7px;
}

.final-plan-card .final-button {
  width: 100%;
}

.final-download {
  text-align: center;
}

.final-download .final-section-heading {
  margin: 0 auto;
}

.final-download-actions {
  justify-content: center;
}

.final-global-footer {
  align-items: center;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--final-text, #FFFFFF);
  margin-top: 0;
  max-width: none;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
}

.final-global-footer p {
  color: #FFFFFF;
  margin: 0;
}

.final-global-footer nav,
.final-global-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer.final-global-footer a,
.final-global-footer a {
  color: #FFD65A;
  font-weight: 760;
}

.site-footer.final-global-footer a:hover,
.final-global-footer a:hover {
  color: #FFD65A;
}

@media (prefers-reduced-motion: reduce) {
  .website-final::before,
  .final-section-heading,
  .final-hero,
  .final-feature-card,
  .final-button,
  .final-feature-icon {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .final-hero,
  .final-feature-grid,
  .final-pricing-grid {
    grid-template-columns: 1fr;
  }

  .final-hero {
    gap: 34px;
    min-height: auto;
    padding-top: 44px;
  }

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

@media (max-width: 620px) {
  .final-hero,
  .final-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .final-hero-copy h1 {
    font-size: 3.1rem;
  }

  .final-subtitle {
    font-size: 1.55rem;
  }

  .final-actions,
  .final-feature-grid,
  .final-download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-button {
    width: 100%;
  }

  .final-hero-media img {
    height: 460px;
  }

  .final-global-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
