:root {
  --yellow: #fbd044;
  --ink: #272727;
  --muted: #5d5d5d;
  --paper: #ffffff;
  --soft: #f8f8f8;
  --line: #e9e9e9;
  --radius: 30px;
  color-scheme: light;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

mark {
  color: var(--yellow);
  background: transparent;
}

.site-header,
.section-shell {
  width: min(100% - 32px, 1564px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.header-brand {
  width: 297.13px;
  height: 66.37px;
}

.footer-brand {
  width: 180px;
  height: 40.21px;
  margin-bottom: 56px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.top-nav a,
.link-button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.section-shell {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
  padding-top: 72px;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 26px;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1;
  font-weight: 800;
}

.hero p {
  max-width: 640px;
  margin: 0 0 36px;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(251, 208, 68, 0.24);
}

.secondary-button {
  background: transparent;
  border: 3px solid var(--yellow);
  box-shadow: none;
}

.store-block {
  margin-top: 52px;
}

.store-block > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.store-badge img {
  width: auto;
  height: 24px;
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  gap: 1px;
}

.store-badge small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: clamp(520px, 41vw, 790px);
  max-width: 100%;
  display: grid;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
}

h2 {
  margin: 0 0 44px;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.16;
  font-weight: 800;
}

h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: break-word;
}

h3,
h4,
p {
  margin-top: 0;
}

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

.image-card,
.change-card,
.metric,
.takeaway {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  border-bottom: 8px solid var(--yellow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.39;
  object-fit: cover;
}

.image-card p {
  min-height: 194px;
  margin: 0;
  padding: 22px;
  font-weight: 600;
}

.change-card {
  min-height: 464px;
  padding: 34px 30px;
  background: var(--yellow);
  border-bottom: 0;
}

.check-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.28), 0 0 0 76px rgba(255, 255, 255, 0.14);
}

.change-card h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.change-card p {
  font-size: 20px;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 27px;
  font-weight: 600;
}

.metrics-grid,
.takeaway-grid,
.steps-grid,
.revenue-grid {
  display: grid;
  gap: 20px;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 42px;
}

.metric {
  min-height: 236px;
  padding: 38px 40px;
}

.metric strong {
  color: var(--yellow);
  font-size: clamp(58px, 6vw, 96px);
  line-height: 1;
  font-weight: 600;
}

.metric span {
  font-size: 48px;
  font-weight: 600;
}

.metric p {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

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

.takeaway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 14px 16px 14px 22px;
  border-radius: 22px;
}

.takeaway h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.takeaway p {
  max-width: 540px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.takeaway-copy {
  min-width: 0;
}

.takeaway-media {
  position: relative;
  flex: 0 0 auto;
  width: clamp(104px, 10vw, 128px);
}

.takeaway-media img {
  width: 100%;
}

.note,
.philosophy strong {
  display: block;
  max-width: 980px;
  margin: 36px 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--yellow);
  font-size: 20px;
  font-weight: 700;
}

.platform,
.philosophy,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
}

.platform {
  overflow: hidden;
  padding: 0;
  margin-top: 80px;
  margin-bottom: 80px;
  border: 0;
  border-radius: 50px;
  background: var(--soft);
  border-bottom: 8px solid var(--yellow);
}

.philosophy {
  grid-template-columns: minmax(0, 944px) minmax(360px, 529px);
  justify-content: space-between;
  gap: clamp(48px, 4vw, 82px);
  padding: 44px 0;
}

.platform-copy {
  padding: 58px 0 58px 40px;
}

.platform-copy p,
.philosophy-copy p {
  font-size: 20px;
  font-weight: 600;
}

.philosophy h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 2.2vw, 32px);
  line-height: 1.15;
}

.philosophy-copy p {
  margin-bottom: 20px;
  font-size: 16px;
}

.philosophy strong {
  max-width: 944px;
  margin-top: 26px;
  padding-left: 17px;
  border-left-width: 3px;
  font-size: 16px;
}

.platform-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.platform-visual::after {
  position: absolute;
  top: 36px;
  right: 5%;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: -154px 18px 0 0 var(--yellow);
}

.platform-report,
.platform-robot,
.platform-parrot {
  position: absolute;
}

.platform-report {
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(405px, 58%);
}

.platform-robot {
  right: -1%;
  bottom: -36px;
  z-index: 2;
  width: min(430px, 64%);
  mix-blend-mode: multiply;
}

.platform-parrot {
  right: 31%;
  bottom: 34px;
  z-index: 4;
  width: min(118px, 18%);
}

.difference {
  margin-top: -80px;
  padding: 40px;
  border: 0;
  border-radius: 0 0 50px 50px;
  background: var(--soft);
  border-bottom: 8px solid var(--yellow);
}

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

.difference h3 {
  font-size: 27px;
}

.difference p {
  font-size: 20px;
  font-weight: 600;
}

.philosophy-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 529px;
}

.philosophy-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
}

.philosophy-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 64px;
}

.steps-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 130px;
  padding: 28px 36px 28px 28px;
  border-radius: 30px;
  background: var(--soft);
  border-bottom: 8px solid var(--yellow);
}

.step-icon {
  position: relative;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
}

.step-ring,
.step-glyph {
  position: absolute;
}

.step-ring {
  inset: 0;
  width: 100%;
  height: 100%;
}

.step-glyph {
  inset: 50% auto auto 50%;
  width: auto;
  max-width: 54%;
  max-height: 54%;
  transform: translate(-50%, -50%);
}

.step-copy {
  min-width: 0;
}

.step-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.step-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.lifecycle h3 {
  margin-bottom: 28px;
  font-size: 32px;
}

.revenue-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.revenue-grid article {
  padding-left: 24px;
  border-left: 4px solid var(--yellow);
}

.revenue-grid h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.revenue-grid p {
  color: var(--muted);
  font-weight: 600;
}

.final-cta {
  grid-template-columns: minmax(260px, 340px) minmax(520px, 1080px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(36px, 4.6vw, 72px);
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 0;
}

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

.final-copy .store-block {
  margin-top: 0;
  margin-bottom: 28px;
}

.final-copy .store-block > span {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.final-copy .store-badges {
  gap: 8px;
}

.final-copy .store-badge {
  min-width: 127px;
  min-height: 38px;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1;
}

.final-copy p {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.final-copy .primary-button {
  min-width: 178px;
  min-height: 48px;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 16px;
}

.legal-links {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  color: rgba(39, 39, 39, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.screens {
  width: 100%;
  max-width: 1080px;
  justify-self: end;
}

.contact-dialog {
  width: min(100% - 32px, 520px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 32px;
}

.contact-form h2 {
  margin-bottom: 4px;
  font-size: 28px;
}

.contact-form p {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 600;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .required {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 24px;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-on-load.is-visible {
  animation: pulse-on-load 0.7s ease 0.2s both;
}

@keyframes pulse-on-load {
  0% { transform: scale(1); }
  45% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .top-nav {
    display: none;
  }

  .hero,
  .platform,
  .philosophy,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 600px);
  }

  .problem-grid,
  .metrics-grid,
  .steps-grid,
  .revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .platform-copy {
    padding: 40px;
  }
}

.hero-copy,
.hero-visual,
.platform-copy,
.platform-visual,
.philosophy-copy,
.final-copy {
  min-width: 0;
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .section-shell {
    width: calc(100% - 32px);
    max-width: 390px;
  }

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

  .section-shell {
    padding: 44px 0;
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  .hero-copy {
    width: min(100%, 312px);
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 14px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: min(100%, 360px);
    overflow: visible;
  }

  h2 {
    margin-bottom: 24px;
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .philosophy h2 {
    font-size: 24px;
  }

  .section-shell > h2 {
    max-width: 312px;
  }

  .problem-grid,
  .metrics-grid,
  .takeaway-grid,
  .steps-grid,
  .revenue-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: var(--soft);
    border-bottom: 4px solid var(--yellow);
    max-width: 100%;
  }

  .image-card img {
    width: 100%;
    height: 150px;
    border-radius: 0;
    object-fit: cover;
  }

  .image-card p {
    min-height: auto;
    min-width: 0;
    max-width: 280px;
    padding: 16px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .change-card {
    min-height: auto;
    padding: 24px;
  }

  .check-icon {
    width: 78px;
    height: 78px;
  }

  .eyebrow {
    font-size: 17px;
  }

  .metric,
  .takeaway {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .metric strong {
    font-size: 58px;
  }

  .metric span {
    font-size: 30px;
  }

  .takeaway h3,
  .difference h3 {
    font-size: 22px;
  }

  .takeaway p,
  .difference p,
  .platform-copy p,
  .philosophy-copy p,
  .note,
  .philosophy strong {
    font-size: 15px;
  }

  .philosophy-visual {
    width: min(300px, 100%);
  }

  .takeaway {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .takeaway h3 {
    margin-bottom: 8px;
  }

  .takeaway-media {
    width: 88px;
    align-self: start;
  }

  .platform {
    margin-top: 44px;
    margin-bottom: 44px;
    border-radius: 24px 24px 0 0;
  }

  .platform-copy,
  .difference {
    padding: 24px;
  }

  .platform-visual {
    min-height: 320px;
  }

  .platform-visual::after {
    top: 18px;
    right: 8px;
    width: 8px;
    height: 8px;
    box-shadow: -120px 16px 0 0 var(--yellow);
  }

  .platform-report {
    left: 6px;
    bottom: 8px;
    width: min(220px, 58%);
  }

  .platform-robot {
    right: -10px;
    bottom: -22px;
    width: min(250px, 72%);
  }

  .platform-parrot {
    right: 84px;
    bottom: 20px;
    width: min(72px, 22%);
  }

  .difference {
    margin-top: -44px;
    border-radius: 0 0 24px 24px;
  }

  .steps-grid article {
    min-height: 68px;
    padding: 12px;
  }

  .step-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .legal-links {
    flex-direction: column;
    gap: 8px;
  }

  .contact-form {
    padding: 24px;
  }
}
