:root {
  --orange: #f7931e;
  --coral: #ff6634;
  --dark: #262626;
  --muted: #777777;
  --soft: #fff8f2;
  --cream: #fffdf8;
  --line: rgba(247, 147, 30, 0.14);
  --shadow: 0 28px 80px rgba(38, 38, 38, 0.12);
  --radius-xl: 64px;
  --radius-lg: 42px;
  --radius-md: 28px;
  --container: 1280px;
  --landing-header-height: 76px;
  --landing-anchor-offset: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 102, 52, 0.07), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(247, 147, 30, 0.09), transparent 25%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf6 34%, #fffdf8 100%);
  color: var(--dark);
  overflow-x: hidden;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.page-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 44% 56% 70% 30% / 40% 38% 62% 60%;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.18), rgba(255, 102, 52, 0.06));
  filter: blur(1px);
}

.orb-a { left: -170px; top: 220px; }
.orb-b { right: -130px; top: 120px; transform: rotate(30deg); }
.orb-c { left: -120px; bottom: 18%; transform: rotate(-20deg); }
.orb-d { right: -140px; bottom: 34%; transform: rotate(65deg); }

.particle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 999px;
  opacity: 0.8;
  animation: float 8s ease-in-out infinite;
}

.p1 { left: 10%; top: 14%; }
.p2 { left: 40%; top: 8%; animation-delay: -2s; }
.p3 { left: 82%; top: 22%; animation-delay: -5s; }
.p4 { left: 7%; top: 60%; animation-delay: -1s; }
.p5 { left: 91%; top: 72%; animation-delay: -4s; }
.p6 { left: 52%; top: 48%; animation-delay: -6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(20px);
}

.nav-inner {
  height: var(--landing-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a:hover {
  color: var(--orange);
  opacity: 1;
}

.top-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(247, 147, 30, 0.28);
}

/* Hero */
.hero {
  padding: 52px 0 80px;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--coral);
  background: rgba(255, 102, 52, 0.08);
  border: 1px solid rgba(255, 102, 52, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 26px;
}

.hero h1 {
  margin: 0;
  font-size: 60px !important;
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--coral);
}

.hero p {
  max-width: 520px;
  margin: 30px 0 28px;
  color: #5f5f5f;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}

.store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  height: 58px;
  background: #090909;
  color: #fff;
  border-radius: 12px;
  padding: 8px 18px 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.store-badge small {
  display: block;
  font-size: 10px;
  line-height: 1;
  opacity: 0.85;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.store-icon {
  font-size: 26px;
  line-height: 1;
}

.store-icon.apple {
  font-size: 20px;
}

.scroll-link {
  margin-top: 30px;
  display: inline-flex;
  gap: 10px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-person-card {
  width: min(620px, 90%);
  height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}

.person-shape {
  position: absolute;
  inset: 40px 10px 0 auto;
  width: 470px;
  height: 540px;
  border-radius: 48% 52% 44% 56% / 32% 42% 58% 68%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.85), transparent 23%),
    linear-gradient(145deg, rgba(255, 102, 52, 0.22), rgba(247, 147, 30, 0.10));
  z-index: 0;
}

.person-shape::before {
  content: "";
  position: absolute;
  left: 140px;
  top: 24px;
  width: 165px;
  height: 165px;
  border-radius: 999px;
  background: #262626;
  box-shadow:
    -65px 92px 0 5px #c36a33,
    55px 105px 0 8px #c36a33,
    0 242px 0 90px #bb632f;
}

.person-shape::after {
  content: "";
  position: absolute;
  left: 134px;
  top: 98px;
  width: 180px;
  height: 110px;
  border-radius: 46% 54% 48% 52%;
  background: #f3b992;
  box-shadow: 0 250px 0 130px #fff;
}

.hero-phone {
  width: 230px;
  transform: rotate(-3deg) translateX(-10px);
  z-index: 2;
}

.phone {
  position: relative;
  border-radius: 46px;
  background: #111;
  padding: 9px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
  background: #f6f6f6;
}

.floating {
  animation: float 7s ease-in-out infinite;
}

.floating-card,
.float-icon {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(247, 147, 30, 0.14);
  box-shadow: 0 18px 55px rgba(38, 38, 38, 0.09);
}

.qr-card {
  left: 58px;
  top: 138px;
  width: 126px;
  height: 126px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  transform: rotate(-7deg);
}

.qr-mini {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 16px 16px,
    linear-gradient(#111 8px, transparent 8px) 0 0 / 16px 16px,
    #fff;
  border: 7px solid #fff;
  outline: 3px solid #111;
}

.confirm-card {
  top: 82px;
  left: 270px;
  border-radius: 24px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.check-dot {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.float-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  font-weight: 900;
  font-size: 28px;
}

.location { right: 70px; top: 190px; }
.calendar { right: 10px; top: 330px; }
.lock { right: 36px; bottom: 92px; }
.users { left: 110px; bottom: 132px; }

/* Resources */
.resources {
  margin-top: -22px;
  position: relative;
  z-index: 5;
}

.resource-pill {
  min-height: 168px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(247, 147, 30, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 70px rgba(247, 147, 30, 0.08);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  padding: 24px 34px;
}

.resource-item {
  text-align: center;
  font-weight: 900;
}

.resource-icon {
  color: var(--orange);
  margin-bottom: 10px;
  display: grid;
  place-items: center;
}

.resource-icon svg {
  width: 28px;
  height: 28px;
}

.resource-item strong {
  display: block;
  font-size: 16px;
}

.resource-item span {
  margin-top: 6px;
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

/* Intro */
.intro {
  padding: 100px 0 72px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 52px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.intro-copy p,
.security-copy p,
.security-list p,
.download-copy p {
  color: #666;
  font-weight: 600;
  line-height: 1.75;
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
  color: #4d4d4d;
  font-weight: 800;
}

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.phones-stack {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phones-stack .phone {
  width: 245px;
}

.phone-tilt-left {
  transform: rotate(-8deg) translateX(34px) translateY(20px);
  z-index: 1;
}

.phone-front {
  transform: translateY(-8px);
  z-index: 3;
}

.phone-tilt-right {
  transform: rotate(8deg) translateX(-34px) translateY(18px);
  z-index: 2;
}

/* Security */
.security {
  padding: 36px 0 72px;
}

.security-panel {
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(247, 147, 30, 0.12);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(247, 147, 30, 0.08);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.64fr;
  gap: 26px;
  align-items: center;
  position: relative;
  overflow: visible;
}

.security-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -170px -80px;
  height: 330px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(circle, rgba(247,147,30,0.12), transparent 65%);
}

.security-copy,
.security-list,
.security-orbit {
  position: relative;
  z-index: 1;
}

.security-copy h2 {
  font-size: clamp(30px, 2.6vw, 46px);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  gap: 8px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}

.security-orbit {
  --orbit-icon: 52px;
  --orbit-spread-y: 18px;
  --orbit-spread-x: 20px;
  --orbit-spread-x-mid: 50px;
  --orbit-side-gap: 32px;
  position: relative;
  width: 100%;
  max-width: 580px;
  min-height: 460px;
  margin: auto;
}

.orbit-layout {
  position: relative;
  z-index: 1;
  min-height: 460px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr auto 1.35fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    ". top ."
    "left . right"
    ". bottom .";
  align-items: center;
}

.orbit-slot--top {
  grid-area: top;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translateY(calc(-1 * var(--orbit-spread-y)));
}

.orbit-slot--left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: var(--orbit-side-gap);
}

.orbit-slot--left .orbit-item:nth-child(1) {
  transform: translateX(calc(-1 * var(--orbit-spread-x)));
}

.orbit-slot--left .orbit-item:nth-child(2) {
  transform: translateX(calc(-1 * var(--orbit-spread-x-mid)));
}

.orbit-slot--left .orbit-item:nth-child(3) {
  transform: translateX(calc(-1 * var(--orbit-spread-x)));
}

.orbit-slot--right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--orbit-side-gap);
}

.orbit-slot--right .orbit-item:nth-child(1) {
  transform: translateX(var(--orbit-spread-x));
}

.orbit-slot--right .orbit-item:nth-child(2) {
  transform: translateX(var(--orbit-spread-x-mid));
}

.orbit-slot--right .orbit-item:nth-child(3) {
  transform: translateX(var(--orbit-spread-x));
}

.orbit-slot--bottom {
  grid-area: bottom;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(var(--orbit-spread-y));
}

.orbit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.orbit-item--above {
  flex-direction: column;
  gap: 8px;
}

.orbit-item--below {
  flex-direction: column;
  gap: 8px;
}

.orbit-item--left {
  flex-direction: row;
}

.orbit-item--right {
  flex-direction: row;
}

.orbit-item--left .orbit-node-label {
  text-align: right;
}

.orbit-item--right .orbit-node-label {
  text-align: left;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.32) 0%, rgba(247, 147, 30, 0.10) 55%, transparent 72%);
}

.orbit-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(247, 147, 30, 0.32));
}

.orbit-node-icon {
  width: var(--orbit-icon);
  height: var(--orbit-icon);
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(247, 147, 30, 0.12);
  box-shadow: 0 10px 24px rgba(38, 38, 38, 0.10);
  display: grid;
  place-items: center;
  color: var(--dark);
}

.orbit-node-icon svg {
  width: 24px;
  height: 24px;
}

.orbit-node-label {
  width: 76px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
}

.security-list {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(247, 147, 30, 0.10);
  border-radius: 34px;
  padding: 36px 30px;
}

.security-list h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.compact {
  gap: 10px;
  font-size: 14px;
}

/* Flow */
.flow {
  padding: 34px 0 66px;
}

.flow h2,
.audiences h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 42px;
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding: 0 36px;
}

.flow-line::before {
  content: "";
  position: absolute;
  left: 80px;
  right: 80px;
  top: 38px;
  border-top: 2px dashed rgba(247, 147, 30, 0.25);
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-step > div,
.flow-step-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(247, 147, 30, 0.11);
  border: 1px solid rgba(247, 147, 30, 0.16);
}

.flow-step-icon svg {
  width: 28px;
  height: 28px;
}

.flow-step strong {
  display: block;
  font-size: 15px;
}

.flow-step span {
  display: block;
  margin-top: 7px;
  color: #666;
  line-height: 1.35;
  font-size: 13px;
  font-weight: 600;
}

/* Audiences */
.audiences {
  padding: 32px 0 54px;
}

.audience-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(247, 147, 30, 0.07);
}

.audience-row div {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.audience-row span,
.audience-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(247, 147, 30, 0.10);
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

/* Gallery */
.gallery {
  padding: 34px 0 70px;
}

.gallery-panel {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 50%, rgba(247,147,30,0.12), transparent 30%),
    radial-gradient(circle at 94% 42%, rgba(255,102,52,0.18), transparent 22%),
    rgba(255, 255, 255, 0.52);
  padding: 54px 42px 40px;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  align-items: center;
  gap: 34px;
}

.gallery-title h2 {
  font-size: clamp(28px, 2.4vw, 44px);
  max-width: 280px;
}

.gallery-phones {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: end;
}

.gallery-phones figure {
  margin: 0;
  text-align: center;
}

.small-phone {
  width: 122px;
  border-radius: 28px;
  padding: 5px;
  box-shadow: 0 18px 38px rgba(38, 38, 38, 0.12);
}

.small-phone img {
  border-radius: 23px;
}

.gallery-phones figure:nth-child(2n) .small-phone {
  transform: translateY(12px);
}

figcaption {
  margin-top: 14px;
  font-size: 12px;
  color: #333;
  font-weight: 800;
}

/* Download */
.download {
  padding: 0 0 60px;
}

.download-panel {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
  border-radius: 56px;
  background:
    radial-gradient(circle at 58% 42%, rgba(247,147,30,0.24), transparent 24%),
    linear-gradient(135deg, rgba(255,102,52,0.14), rgba(247,147,30,0.05));
  padding: 46px 58px;
  overflow: hidden;
}

.download-copy h2 {
  font-size: clamp(32px, 3.2vw, 52px);
}

.download-copy p {
  max-width: 430px;
}

.download-phone {
  min-height: 260px;
  position: relative;
}

.cta-phone {
  position: absolute;
  width: 430px;
  height: 250px;
  right: 110px;
  bottom: -80px;
  transform: rotate(-16deg);
  background: #fff;
  border-radius: 54px;
  display: grid;
  place-items: center;
  padding: 38px;
}

.cta-phone img {
  object-fit: contain;
  border-radius: 0;
  height: auto;
  max-height: 120px;
}

.qr-download {
  position: absolute;
  right: 0;
  top: 50px;
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 12px;
  text-align: center;
  color: #6d6d6d;
  font-weight: 800;
}

.qr-download .qr-mini {
  width: 100px;
  height: 100px;
  background-size: 18px 18px, 18px 18px;
}

/* FAQ */
.faq {
  padding: 0 0 44px;
}

.faq h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

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

details {
  border-bottom: 1px solid rgba(38,38,38,0.12);
  padding: 19px 0;
  color: #333;
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: #777;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 12px 0 0;
  color: #686868;
  line-height: 1.55;
  font-size: 13px;
}

/* Footer */
.footer {
  margin-top: 32px;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(247, 147, 30, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px 40px;
  align-items: start;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.footer-col strong {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--dark);
}

.footer-col a {
  display: block;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 160ms ease;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-col a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(247, 147, 30, 0.10);
  border: 1px solid rgba(247, 147, 30, 0.16);
  transition: background 160ms ease, color 160ms ease;
}

.socials a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  border-color: transparent;
}

.socials svg {
  width: 17px;
  height: 17px;
}

/* Responsive */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .security-panel,
  .download-panel,
  .gallery-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-person-card {
    height: 520px;
  }

  .security-panel {
    text-align: center;
  }

  .security-copy,
  .security-list {
    max-width: 620px;
    margin: 0 auto;
  }

  .resource-pill {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

  .gallery-phones {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
  }

  .gallery-title h2 {
    max-width: none;
    text-align: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --landing-anchor-offset: 82px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-inner {
    height: var(--landing-header-height);
  }

  .brand img {
    width: 118px;
  }

  .top-cta {
    display: none;
  }

  .hero {
    padding-top: 26px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .store-row,
  .scroll-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 440px;
  }

  .person-shape {
    width: 330px;
    height: 390px;
  }

  .hero-phone {
    width: 172px;
  }

  .floating-card,
  .float-icon {
    display: none;
  }

  .resource-pill {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 36px;
  }

  .intro {
    padding-top: 58px;
  }

  .phones-stack {
    min-height: 430px;
  }

  .phones-stack .phone {
    width: 160px;
  }

  .security-panel {
    padding: 42px 20px;
    border-radius: 36px;
  }

  .security-orbit {
    --orbit-icon: 44px;
    --orbit-spread-y: 12px;
    --orbit-spread-x: 12px;
    --orbit-spread-x-mid: 32px;
    --orbit-side-gap: 22px;
    min-height: 380px;
  }

  .orbit-layout {
    min-height: 380px;
  }

  .orbit-ring {
    grid-template-columns: 1.15fr auto 1.15fr;
  }

  .orbit-node-icon svg {
    width: 20px;
    height: 20px;
  }

  .orbit-node-label {
    width: 64px;
    font-size: 10px;
  }

  .orbit-center {
    width: 108px;
    height: 108px;
  }

  .orbit-logo {
    width: 76px;
    height: 76px;
  }

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

  .flow-line::before {
    display: none;
  }

  .audience-row {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 36px;
  }

  .gallery-panel {
    padding: 38px 18px;
    border-radius: 36px;
  }

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

  .small-phone {
    width: 132px;
  }

  .download-panel {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
    border-radius: 36px;
  }

  .download-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .download-phone {
    display: none;
  }

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

  .footer {
    padding: 44px 0 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Remove dependência dos badges feitos em CSS quando os badges reais forem usados */
.store-row-images .store-badge {
  display: none;
}

/* Mockup PNG transparente no CTA */
.cta-mockup-image {
  background: transparent !important;
}

.download-phone-real {
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.download-phone-real .cta-mockup-image {
  position: absolute;
  right: 70px;
  bottom: -74px;
  width: min(620px, 88%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 64px rgba(38, 38, 38, 0.16));
}

.download-phone-real .qr-download {
  right: 0;
  top: 66px;
  z-index: 2;
}

@media (max-width: 1180px) {
  .download-phone-real {
    min-height: 360px;
    justify-content: center;
  }

  .download-phone-real .cta-mockup-image {
    right: 50%;
    bottom: -38px;
    width: min(680px, 100%);
    transform: translateX(50%);
  }

  .download-phone-real .qr-download {
    right: 32px;
    top: 54px;
  }
}

@media (max-width: 760px) {
  .store-row-images {
    justify-content: center;
  }

  .store-image-link,
  .store-image-link img,
  .app-store-link img {
    height: 48px;
  }

  .download-phone-real {
    display: block;
    min-height: 250px;
  }

  .download-phone-real .cta-mockup-image {
    right: 50%;
    bottom: -18px;
    width: 126%;
    transform: translateX(50%);
  }

  .download-phone-real .qr-download {
    display: none;
  }
}

.landing-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow-x: hidden;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 102, 52, 0.07), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(247, 147, 30, 0.09), transparent 25%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf6 34%, #fffdf8 100%);
  color: var(--dark);
}

.landing-page .page-orbs {
  z-index: 0;
}

.landing-page__content {
  position: relative;
  z-index: 1;
  padding-top: var(--landing-header-height);
}

.landing-page section[id] {
  scroll-margin-top: var(--landing-anchor-offset);
}

/* Calibração final de proporção baseada na landing de referência */
:root {
  --container: 1280px;
}

/* Tipografia geral mais próxima do mockup original */
h2 {
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.nav-inner {
  height: var(--landing-header-height);
}

.brand img {
  width: 138px;
}

.nav-links {
  gap: 34px;
  font-size: 13px;
}

.top-cta {
  padding: 8px 20px;
  font-size: 14px;
}

/* Hero mais horizontal, com letras menores e imagem melhor encaixada */
.hero {
  position: relative;
  padding: 46px 0 0;
  min-height: 705px;
  display: block;
  overflow: hidden;
}

.hero-grid {
  min-height: 625px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: end;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 98px;
}

.eyebrow {
  font-size: 13px;
  padding: 7px 14px;
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 570px;
  font-size: 60px;
  line-height: 1.10;
  letter-spacing: -0.058em;
  font-weight: 900;
}

.hero h1 span {
  display: inline-block;
  color: var(--coral);
}

.hero p {
  max-width: 480px;
  margin: 24px 0 25px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #626262;
}

.scroll-link {
  margin-top: 25px;
  font-size: 14px;
}

/* imagem do hero fixa, maior e assentada na seção */
.hero-visual-image {
  position: relative;
  min-height: 625px;
  height: 625px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  align-self: end;
  z-index: 3;
}

.hero-person-image {
  width: min(890px, 126%);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(42px) translateY(8px);
  filter: drop-shadow(0 28px 58px rgba(38, 38, 38, 0.10));
  animation: none !important;
}

/* cobre o QR antigo da imagem e usa o QR real enviado */
.hero-qr-card {
  position: absolute;
  left: 5.5%;
  top: 25.5%;
  width: 108px;
  height: 108px;
  padding: 13px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(38, 38, 38, 0.12);
  z-index: 5;
  transform: rotate(-2deg);
}

.hero-qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* transição suave para recursos, sem corte seco */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0) 0%,
    rgba(255, 253, 248, 0.58) 58%,
    rgba(255, 253, 248, 1) 100%
  );
  z-index: 2;
}

.resources {
  margin-top: -70px;
  position: relative;
  z-index: 8;
}

.resource-pill {
  min-height: 152px;
  padding: 22px 34px;
  border-radius: 58px;
  position: relative;
  z-index: 9;
}

.resource-item strong {
  font-size: 14px;
}

.resource-item span {
  font-size: 12px;
}

/* Badges reais das lojas */
.store-row-images {
  align-items: center;
  gap: 12px;
}

.store-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-image-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 22px rgba(38, 38, 38, 0.16));
}

.store-image-link img,
.app-store-link img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Seções seguintes levemente menores e mais arejadas */
.intro {
  padding: 88px 0 66px;
}

.intro-copy p,
.security-copy p,
.security-list p,
.download-copy p {
  font-size: 15px;
  line-height: 1.68;
}

.check-list {
  font-size: 14px;
}

.phones-stack {
  min-height: 520px;
}

.phones-stack .phone {
  width: 222px;
}

.security-panel {
  min-height: 520px;
  padding: 62px 52px;
}

.security-copy h2 {
  font-size: clamp(28px, 2.3vw, 40px);
}

.security-list h3 {
  font-size: 24px;
}

.flow h2,
.audiences h2 {
  font-size: 24px;
  margin-bottom: 36px;
}

.gallery-title h2 {
  font-size: clamp(26px, 2.1vw, 38px);
}

.small-phone {
  width: 112px;
}

.download-panel {
  min-height: 330px;
  padding: 44px 56px;
}

.download-copy h2 {
  font-size: clamp(30px, 2.7vw, 44px);
}

/* Mockup PNG transparente no CTA */
.cta-mockup-image {
  background: transparent !important;
}

.download-phone-real {
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.download-phone-real .cta-mockup-image {
  position: absolute;
  right: 70px;
  bottom: -74px;
  width: min(620px, 88%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 64px rgba(38, 38, 38, 0.16));
}

.qr-download .qr-image,
.qr-download img {
  width: 108px;
  height: 108px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 16px 36px rgba(38, 38, 38, 0.12);
}

.download-phone-real .qr-download {
  right: 0;
  top: 66px;
  z-index: 2;
}

/* Responsivo */
@media (max-width: 1180px) {
  .hero {
    padding-top: 38px;
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .hero h1,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual-image {
    min-height: auto;
    height: auto;
    justify-content: center;
    margin-top: 24px;
  }

  .hero-person-image {
    width: min(820px, 100%);
    transform: translateY(4px);
  }

  .hero-qr-card {
    left: 16%;
    top: 21%;
  }

  .resources {
    margin-top: -42px;
  }

  .download-phone-real {
    min-height: 360px;
    justify-content: center;
  }

  .download-phone-real .cta-mockup-image {
    right: 50%;
    bottom: -38px;
    width: min(680px, 100%);
    transform: translateX(50%);
  }

  .download-phone-real .qr-download {
    right: 32px;
    top: 54px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-visual-image {
    margin-top: 18px;
  }

  .hero-person-image {
    width: 124%;
    transform: translateX(4%) translateY(4px);
  }

  .hero-qr-card {
    width: 78px;
    height: 78px;
    padding: 9px;
    left: 4%;
    top: 22%;
  }

  .resources {
    margin-top: -28px;
  }

  .store-row-images {
    justify-content: center;
  }

  .store-image-link,
  .store-image-link img,
  .app-store-link img {
    height: 44px;
  }

  .download-phone-real {
    display: block;
    min-height: 250px;
  }

  .download-phone-real .cta-mockup-image {
    right: 50%;
    bottom: -18px;
    width: 126%;
    transform: translateX(50%);
  }

  .download-phone-real .qr-download {
    display: none;
  }
}

.landing-page .eyebrow {
  text-transform: none;
  letter-spacing: 0;
}

.landing-page .security-orbit {
  --orbit-guide-size: 438px;
  --orbit-spread-x: 42px;
  --orbit-spread-x-mid: 88px;
  --orbit-side-gap: 46px;
  max-width: 650px;
  min-height: 520px;
}

.landing-page .orbit-layout {
  min-height: 520px;
}

.landing-page .orbit-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-guide-size);
  height: var(--orbit-guide-size);
  border: 1px solid rgba(247, 147, 30, 0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.landing-page .orbit-slot--top,
.landing-page .orbit-slot--bottom {
  position: absolute;
  left: 50%;
  grid-area: auto;
  transform: translateX(-50%);
}

.landing-page .orbit-slot--top {
  top: 48px;
  align-items: center;
}

.landing-page .orbit-slot--bottom {
  bottom: 48px;
  align-items: center;
}

.landing-page .orbit-item--above,
.landing-page .orbit-item--below {
  align-items: center;
}

.landing-page .orbit-item--above .orbit-node-icon {
  order: 1;
}

.landing-page .orbit-item--above .orbit-node-label {
  order: 0;
}

.landing-page .orbit-item--below .orbit-node-icon {
  order: 0;
}

.landing-page .orbit-item--below .orbit-node-label {
  order: 1;
}

@media (max-width: 760px) {
  .landing-page .security-orbit {
    --orbit-guide-size: 328px;
    --orbit-spread-x: 18px;
    --orbit-spread-x-mid: 44px;
    --orbit-side-gap: 28px;
  }

  .landing-page .orbit-slot--top {
    top: 34px;
  }

  .landing-page .orbit-slot--bottom {
    bottom: 34px;
  }
}

.landing-page .web-platform {
  padding: 34px 0 74px;
  position: relative;
}

.landing-page .web-platform-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.86fr 1.14fr;
}

.landing-page .web-platform-copy h2 {
  font-size: clamp(30px, 2.7vw, 46px);
  max-width: 540px;
}

.landing-page .web-platform-copy p {
  color: #666;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.68;
  margin-top: 20px;
  max-width: 520px;
}

.landing-page .web-platform-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 102, 52, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(247, 147, 30, 0.11);
  border-radius: 38px;
  box-shadow: 0 26px 80px rgba(247, 147, 30, 0.09);
  display: grid;
  gap: 22px;
  padding: 34px;
}

.landing-page .web-platform-panel__header {
  display: grid;
  gap: 6px;
}

.landing-page .web-platform-panel__header span,
.landing-page .web-platform-activity span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.landing-page .web-platform-panel__header strong {
  color: var(--dark);
  font-size: 28px;
  line-height: 1.12;
}

.landing-page .web-platform-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.landing-page .web-platform-metrics div,
.landing-page .web-platform-activity,
.landing-page .web-platform-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(247, 147, 30, 0.10);
  box-shadow: 0 14px 40px rgba(38, 38, 38, 0.06);
}

.landing-page .web-platform-metrics div {
  border-radius: 24px;
  display: grid;
  gap: 5px;
  padding: 18px;
}

.landing-page .web-platform-metrics strong {
  color: var(--dark);
  font-size: 26px;
  line-height: 1;
}

.landing-page .web-platform-metrics span {
  color: #6d6d6d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.landing-page .web-platform-activity {
  border-radius: 26px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
}

.landing-page .web-platform-activity strong {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.35;
}

.landing-page .web-platform-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.landing-page .web-platform-card {
  border-radius: 30px;
  display: grid;
  gap: 12px;
  padding: 26px 24px;
}

.landing-page .web-platform-card__icon {
  background: rgba(247, 147, 30, 0.10);
  border: 1px solid rgba(247, 147, 30, 0.16);
  border-radius: 50%;
  color: var(--orange);
  display: grid;
  height: 54px;
  place-items: center;
  width: 54px;
}

.landing-page .web-platform-card__icon svg {
  height: 24px;
  width: 24px;
}

.landing-page .web-platform-card h3 {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.landing-page .web-platform-card p {
  color: #666;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.landing-page .faq {
  padding: 8px 0 56px;
}

.landing-page .faq-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 680px;
}

.landing-page .faq-heading h2 {
  font-size: clamp(30px, 2.8vw, 44px);
  margin: 0;
}

.landing-page .faq-heading p {
  color: #666;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

.landing-page .faq-groups {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.landing-page .faq-group {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(247, 147, 30, 0.09);
  border-radius: 30px;
  padding: 26px 28px 10px;
}

.landing-page .faq-group h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.landing-page .faq-group details {
  border-bottom: 1px solid rgba(38, 38, 38, 0.10);
}

.landing-page .faq-group details:last-child {
  border-bottom: 0;
}

@media (max-width: 1180px) {
  .landing-page .web-platform-grid,
  .landing-page .web-platform-cards {
    grid-template-columns: 1fr;
  }

  .landing-page .web-platform-copy,
  .landing-page .web-platform-copy h2,
  .landing-page .web-platform-copy p {
    max-width: none;
    text-align: center;
  }

  .landing-page .web-platform-copy .eyebrow,
  .landing-page .web-platform-copy .text-link {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-page .web-platform-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .landing-page .web-platform {
    padding: 24px 0 54px;
  }

  .landing-page .web-platform-panel {
    border-radius: 32px;
    padding: 24px;
  }

  .landing-page .web-platform-metrics,
  .landing-page .web-platform-cards,
  .landing-page .faq-groups {
    grid-template-columns: 1fr;
  }

  .landing-page .faq-group {
    border-radius: 26px;
    padding: 22px 20px 8px;
  }
}

.landing-page h1,
.landing-page h2,
.landing-page .security-copy h2,
.landing-page .download-copy h2,
.landing-page .web-platform-copy h2,
.landing-page .faq-heading h2 {
  font-weight: 600;
}

.landing-page h3,
.landing-page .security-list h3,
.landing-page .web-platform-card h3,
.landing-page .faq-group h3 {
  font-weight: 500;
}

@keyframes landingFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes landingSoftFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes landingPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 14px 28px rgba(247, 147, 30, 0.32));
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
    filter: drop-shadow(0 18px 34px rgba(247, 147, 30, 0.38));
  }
}

@keyframes landingLogoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 14px 28px rgba(247, 147, 30, 0.32));
  }

  50% {
    transform: scale(1.09);
    filter: drop-shadow(0 20px 38px rgba(247, 147, 30, 0.44));
  }
}

@keyframes landingLogoAura {
  0% {
    opacity: 0.35;
    transform: scale(0.82);
  }

  70% {
    opacity: 0;
    transform: scale(1.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.landing-page--motion-ready .landing-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--landing-stagger-delay, 0ms);
  will-change: opacity, transform;
}

.landing-page--motion-ready .landing-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-page--motion-ready .hero-reveal {
  animation: landingFadeUp 720ms ease both;
  animation-delay: var(--landing-stagger-delay, 0ms);
}

.landing-stagger-1 { --landing-stagger-delay: 80ms; }
.landing-stagger-2 { --landing-stagger-delay: 160ms; }
.landing-stagger-3 { --landing-stagger-delay: 240ms; }
.landing-stagger-4 { --landing-stagger-delay: 320ms; }
.landing-stagger-5 { --landing-stagger-delay: 400ms; }
.landing-stagger-6 { --landing-stagger-delay: 480ms; }

.landing-page .orbit-node-icon,
.landing-page .web-platform-card,
.landing-page .faq-group,
.landing-page .audience-row > div,
.landing-page .resource-item {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.landing-page .web-platform-card:hover,
.landing-page .faq-group:hover,
.landing-page .audience-row > div:hover,
.landing-page .resource-item:hover {
  transform: translateY(-4px);
}

.landing-page .web-platform-card:hover,
.landing-page .faq-group:hover {
  border-color: rgba(247, 147, 30, 0.18);
  box-shadow: 0 20px 54px rgba(38, 38, 38, 0.09);
}

.landing-page .resource-item:hover .resource-icon,
.landing-page .audience-row > div:hover .audience-icon,
.landing-page .web-platform-card:hover .web-platform-card__icon,
.landing-page .orbit-item:hover .orbit-node-icon {
  transform: translateY(-3px);
}

.landing-page .orbit-center {
  animation: landingPulse 5.5s ease-in-out infinite;
}

.landing-page .orbit-center::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: rgba(247, 147, 30, 0.22);
  animation: landingLogoAura 2.4s ease-out infinite;
  z-index: -1;
}

.landing-page .orbit-logo {
  animation: landingLogoPulse 2.4s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, filter;
}

.landing-page .orbit-node-icon {
  animation: landingSoftFloat 7s ease-in-out infinite;
}

.landing-page .orbit-item:nth-child(2n) .orbit-node-icon {
  animation-delay: -2.2s;
}

.landing-page .orbit-item:nth-child(3n) .orbit-node-icon {
  animation-delay: -4.2s;
}

.landing-page .orbit-ring::before {
  transition: opacity 260ms ease;
}

.landing-page .security-orbit:hover .orbit-ring::before {
  opacity: 0.78;
}

.landing-page details {
  transition: background 220ms ease, border-color 220ms ease, padding-inline 220ms ease;
}

.landing-page details[open] {
  background: rgba(247, 147, 30, 0.045);
  border-color: rgba(247, 147, 30, 0.18);
  border-radius: 18px;
  padding-inline: 14px;
}

.landing-page summary::after {
  transition: color 180ms ease, transform 180ms ease;
}

.landing-page details[open] summary::after {
  color: var(--coral);
  transform: rotate(180deg);
}

.landing-page .top-cta,
.landing-page .text-link,
.landing-page .scroll-link,
.landing-page .store-image-link {
  transition: box-shadow 220ms ease, color 180ms ease, filter 180ms ease, transform 220ms ease;
}

.landing-page .top-cta:hover {
  box-shadow: 0 16px 38px rgba(247, 147, 30, 0.34);
  transform: translateY(-2px);
}

.landing-page .text-link span,
.landing-page .scroll-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.landing-page .text-link:hover span {
  transform: translateX(4px);
}

.landing-page .scroll-link:hover span {
  transform: translateY(3px);
}

.landing-page .back-to-top {
  align-items: center;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  border: 0;
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 18px 42px rgba(247, 147, 30, 0.30);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 28px;
  transform: translateY(14px) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  width: 52px;
  z-index: 60;
}

.landing-page .back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.landing-page .back-to-top:hover {
  box-shadow: 0 22px 48px rgba(247, 147, 30, 0.38);
  transform: translateY(-3px) scale(1.02);
}

.landing-page .back-to-top:focus-visible {
  outline: 3px solid rgba(255, 102, 52, 0.26);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .landing-page .back-to-top {
    bottom: 18px;
    height: 46px;
    right: 18px;
    width: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .landing-page--motion-ready .landing-reveal,
  .landing-page--motion-ready .landing-reveal--visible,
  .landing-page--motion-ready .hero-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.landing-page,
.landing-page__content,
.landing-page main {
  max-width: 100%;
  overflow-x: clip;
}

.landing-page * {
  min-width: 0;
}

.landing-page .nav-menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(247, 147, 30, 0.16);
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.landing-page .nav-mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .landing-page .nav-inner {
    position: relative;
  }

  .landing-page .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .landing-page .top-cta {
    display: none;
  }

  .landing-page .nav-links {
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(247, 147, 30, 0.12);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(38, 38, 38, 0.10);
    display: grid;
    gap: 0;
    left: 16px;
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    position: fixed;
    right: 16px;
    top: calc(var(--landing-header-height) + 10px);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .landing-page .nav--open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .landing-page .nav-links a {
    border-radius: 16px;
    padding: 13px 14px;
    text-align: center;
  }

  .landing-page .nav-links .nav-mobile-cta {
    background: linear-gradient(135deg, var(--orange), var(--coral));
    color: #fff;
    display: block;
    font-weight: 800;
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  :root {
    --landing-header-height: 74px;
    --landing-anchor-offset: 80px;
  }

  .landing-page .container {
    width: min(100% - 28px, var(--container));
  }

  .landing-page .nav {
    background: rgba(255, 253, 248, 0.92);
  }

  .landing-page .brand img {
    width: 138px;
  }

  .landing-page .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .landing-page .hero-grid {
    gap: 12px;
  }

  .landing-page .hero-copy {
    padding-bottom: 0;
  }

  .landing-page .eyebrow {
    font-size: 11px;
    line-height: 1.2;
    max-width: 100%;
    padding: 7px 12px;
  }

  .landing-page .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.13;
    letter-spacing: -0.035em;
  }

  .landing-page .hero p,
  .landing-page .intro-copy p,
  .landing-page .security-copy p,
  .landing-page .security-list p,
  .landing-page .download-copy p,
  .landing-page .web-platform-copy p,
  .landing-page .faq-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .landing-page .store-row-images {
    gap: 8px;
  }

  .landing-page .store-image-link,
  .landing-page .store-image-link img,
  .landing-page .app-store-link img {
    height: 40px;
    max-width: calc(50vw - 22px);
  }

  .landing-page .hero-visual-image {
    min-height: 0;
    overflow: hidden;
    width: 100%;
  }

  .landing-page .hero-person-image {
    margin-inline: auto;
    transform: translateY(4px);
    width: min(100%, 430px);
  }

  .landing-page .resources {
    margin-top: -14px;
  }

  .landing-page .resource-pill {
    gap: 16px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px 16px;
  }

  .landing-page .resource-item strong {
    font-size: 13px;
  }

  .landing-page .resource-item span {
    font-size: 11px;
  }

  .landing-page .intro {
    padding: 54px 0 48px;
  }

  .landing-page h2,
  .landing-page .web-platform-copy h2,
  .landing-page .faq-heading h2,
  .landing-page .download-copy h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    letter-spacing: -0.025em;
    line-height: 1.16;
  }

  .landing-page .phones-stack {
    min-height: 350px;
    overflow: hidden;
  }

  .landing-page .phones-stack .phone {
    width: min(34vw, 142px);
  }

  .landing-page .security-panel {
    overflow: hidden;
    padding: 36px 14px;
  }

  .landing-page .security-orbit {
    --orbit-guide-size: min(78vw, 292px);
    --orbit-icon: 38px;
    --orbit-side-gap: 22px;
    max-width: 100%;
    min-height: 390px;
  }

  .landing-page .orbit-layout {
    min-height: 390px;
  }

  .landing-page .orbit-center {
    height: 84px;
    width: 84px;
  }

  .landing-page .orbit-logo {
    height: 60px;
    width: 60px;
  }

  .landing-page .orbit-node-icon svg {
    height: 18px;
    width: 18px;
  }

  .landing-page .orbit-node-label {
    font-size: 9px;
    line-height: 1.15;
    width: 56px;
  }

  .landing-page .download-panel {
    border-radius: 34px;
    padding: 34px 20px 22px;
  }

  .landing-page .download-phone-real {
    min-height: 260px;
    overflow: hidden;
  }

  .landing-page .download-phone-real .cta-mockup-image {
    bottom: -8px;
    max-width: 100%;
    width: min(105%, 390px);
  }

  .landing-page .web-platform-panel,
  .landing-page .faq-group {
    overflow: hidden;
  }
}

@media (max-width: 430px) {
  .landing-page .container {
    width: min(100% - 24px, var(--container));
  }

  .landing-page .brand img {
    width: 124px;
  }

  .landing-page .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .landing-page h2,
  .landing-page .web-platform-copy h2,
  .landing-page .faq-heading h2,
  .landing-page .download-copy h2 {
    font-size: clamp(25px, 7.8vw, 32px);
  }

  .landing-page .hero-person-image {
    width: min(108%, 360px);
  }

  .landing-page .resource-pill,
  .landing-page .audience-row {
    border-radius: 30px;
  }

  .landing-page .security-orbit {
    --orbit-guide-size: 278px;
    min-height: 382px;
  }

  .landing-page .orbit-layout {
    min-height: 382px;
  }

  .landing-page .orbit-slot--top {
    top: 36px;
  }

  .landing-page .orbit-slot--bottom {
    bottom: 36px;
  }

  .landing-page .download-phone-real {
    min-height: 230px;
  }
}

/* Mobile refinement pass: keep mockups polished and footer structured */
.landing-page .footer-grid {
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(247, 147, 30, 0.12);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(247, 147, 30, 0.08);
  padding: 32px;
}

@media (max-width: 760px) {
  .landing-page .intro-grid {
    gap: 26px;
  }

  .landing-page .phones-stack {
    align-items: center;
    display: block;
    height: 410px;
    margin: 0 auto;
    max-width: 348px;
    min-height: 410px;
    overflow: visible;
    width: 100%;
  }

  .landing-page .phones-stack .phone {
    position: absolute;
    top: 34px;
    width: min(47vw, 164px);
  }

  .landing-page .phones-stack .phone-front {
    left: 50%;
    transform: translateX(-50%) translateY(4px);
  }

  .landing-page .phones-stack .phone-tilt-left {
    left: 0;
    opacity: 0.92;
    transform: rotate(-7deg) translateX(10px) translateY(44px) scale(0.88);
  }

  .landing-page .phones-stack .phone-tilt-right {
    opacity: 0.92;
    right: 0;
    transform: rotate(7deg) translateX(-10px) translateY(44px) scale(0.88);
  }

  .landing-page .footer {
    margin-top: 22px;
    padding: 34px 0 44px;
  }

  .landing-page .footer-grid {
    gap: 26px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 20px;
  }

  .landing-page .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .landing-page .footer-logo {
    margin-bottom: 12px;
    width: 122px;
  }

  .landing-page .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 290px;
  }

  .landing-page .socials {
    gap: 10px;
    margin-top: 16px;
  }

  .landing-page .socials a {
    height: 36px;
    width: 36px;
  }

  .landing-page .footer-col strong {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .landing-page .footer-col a {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 10px;
  }
}

@media (max-width: 430px) {
  .landing-page .phones-stack {
    height: 374px;
    max-width: 316px;
    min-height: 374px;
  }

  .landing-page .phones-stack .phone {
    top: 30px;
    width: min(48vw, 146px);
  }

  .landing-page .phones-stack .phone-front {
    transform: translateX(-50%) translateY(0);
  }

  .landing-page .phones-stack .phone-tilt-left {
    transform: rotate(-6deg) translateX(18px) translateY(44px) scale(0.82);
  }

  .landing-page .phones-stack .phone-tilt-right {
    transform: rotate(6deg) translateX(-18px) translateY(44px) scale(0.82);
  }

  .landing-page .footer-grid {
    border-radius: 28px;
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .landing-page .footer-col {
    border-top: 1px solid rgba(247, 147, 30, 0.10);
    padding-top: 15px;
  }
}

@media (max-width: 430px) {
  .landing-page .hero h1 {
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  .landing-page h2,
  .landing-page .web-platform-copy h2,
  .landing-page .faq-heading h2,
  .landing-page .download-copy h2 {
    font-size: clamp(22px, 6.8vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.018em;
  }
}

@media (max-width: 760px) {
  .landing-page .phones-stack {
    display: flex;
    height: auto;
    justify-content: center;
    min-height: 330px;
    overflow: visible;
  }

  .landing-page .phones-stack .phone {
    position: relative;
    top: auto;
  }

  .landing-page .phones-stack .phone-tilt-left,
  .landing-page .phones-stack .phone-tilt-right {
    display: none;
  }

  .landing-page .phones-stack .phone-front {
    left: auto;
    transform: none;
    width: min(58vw, 210px);
  }
}

@media (max-width: 430px) {
  .landing-page .phones-stack {
    min-height: 300px;
  }

  .landing-page .phones-stack .phone-front {
    width: min(62vw, 196px);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .landing-page .hero .store-row-images {
    gap: 14px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }

  .landing-page .hero .store-image-link,
  .landing-page .hero .store-image-link img,
  .landing-page .hero .app-store-link img {
    height: 46px;
    max-width: 224px;
  }
}

@media (min-width: 1181px) {
  .landing-page .hero {
    display: block;
    min-height: 705px;
    overflow: hidden;
    padding: 46px 0 0;
    position: relative;
  }

  .landing-page .hero-grid {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 625px;
  }

  .landing-page .hero-copy {
    padding-bottom: 98px;
    position: relative;
    transform: none;
    z-index: 4;
  }

  .landing-page .hero .eyebrow {
    font-size: 13px;
    margin-bottom: 22px;
    padding: 7px 14px;
  }

  .landing-page .hero h1 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -0.058em;
    line-height: 1.10;
    margin: 0;
    max-width: 570px;
  }

  .landing-page .hero h1 span {
    color: var(--coral);
    display: inline-block;
  }

  .landing-page .hero p {
    color: #626262;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    margin: 24px 0 25px;
    max-width: 480px;
  }

  .landing-page .hero .scroll-link {
    font-size: 14px;
    margin-top: 25px;
  }

  .landing-page .hero-visual-image {
    align-self: end;
    align-items: flex-end;
    display: flex;
    height: 625px;
    justify-content: flex-end;
    min-height: 625px;
    overflow: visible;
    position: relative;
    transform: none;
    z-index: 3;
  }

  .landing-page .hero-person-image {
    animation: none !important;
    filter: drop-shadow(0 28px 58px rgba(38, 38, 38, 0.10));
    height: auto;
    margin: 0;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    transform: translateX(42px) translateY(8px);
    width: min(890px, 126%);
  }
}

@media (min-width: 1181px) {
  .landing-page .hero-visual-image {
    margin-left: -150px;
    width: calc(100% + 150px);
  }

  .landing-page .hero-person-image {
    transform: translateX(28px) translateY(8px);
    width: min(1120px, 158%);
  }
}
