:root {
  --landing-orange: #ff6200;
  --landing-orange-hover: #e95700;
  --landing-orange-soft: #fff4ed;
  --landing-orange-softer: #fffaf7;
  --landing-ink: #121212;
  --landing-muted: #626262;
  --landing-border: #e8e8e8;
  --landing-surface: #ffffff;
  --landing-surface-soft: #fafafa;
  --landing-shadow: 0 16px 42px rgba(20, 20, 20, 0.07);
  --landing-shadow-small: 0 8px 24px rgba(20, 20, 20, 0.05);
  --landing-radius: 18px;
  --landing-container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.landing-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--landing-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page button,
.landing-page a {
  -webkit-tap-highlight-color: transparent;
}

.landing-page img,
.landing-page svg {
  display: block;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p,
.landing-page ul,
.landing-page ol {
  margin-top: 0;
}

.landing-container {
  width: min(calc(100% - 48px), var(--landing-container));
  margin-inline: auto;
}

.landing-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--landing-ink);
  color: #fff !important;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.landing-skip-link:focus {
  transform: translateY(0);
}

.landing-page :focus-visible {
  outline: 3px solid rgba(255, 98, 0, 0.34);
  outline-offset: 3px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 61px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 106, 0, 0.08);
  background: #fff9f5;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.landing-header.is-scrolled {
  border-color: rgba(255, 106, 0, 0.1);
  background: #fff9f5;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.045);
}

.landing-header .landing-header-inner {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 250px;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding-inline: clamp(20px, 2.2vw, 34px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 0;
  overflow: visible;
  line-height: 0;
}

.landing-brand img,
.landing-footer-brand img {
  width: 140px;
  height: 36px;
  object-fit: contain;
}

.landing-header .landing-brand img {
  display: block;
  width: 160px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: none;
  mask: none;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.35vw, 34px);
}

.landing-nav > a,
.landing-link-login {
  position: relative;
  font-size: 0.87rem;
  font-weight: 600;
  color: #2b2b2b;
  transition: color 0.22s ease;
}

.landing-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--landing-orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.landing-nav > a:hover,
.landing-link-login:hover {
  color: var(--landing-orange);
}

.landing-nav > a:hover::after {
  transform: scaleX(1);
}

.landing-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.landing-nav-mobile-actions,
.landing-menu-toggle {
  display: none;
}

.landing-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.landing-btn-primary {
  background: var(--landing-orange);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(255, 98, 0, 0.18);
}

.landing-btn-primary:hover {
  background: var(--landing-orange-hover);
  box-shadow: 0 13px 26px rgba(255, 98, 0, 0.24);
  transform: translateY(-2px);
}

.landing-btn-secondary {
  border-color: #cfcfcf;
  background: #fff;
  color: var(--landing-ink) !important;
}

.landing-btn-secondary:hover {
  border-color: #a8a8a8;
  box-shadow: var(--landing-shadow-small);
  transform: translateY(-2px);
}

.landing-btn-header {
  min-height: 42px;
  padding-inline: 17px;
  white-space: nowrap;
}

.landing-btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 30px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(550px, 1.18fr);
  align-items: center;
  gap: 42px;
  min-height: 570px;
}

.landing-hero-left-column {
  display: contents;
  min-width: 0;
}

.landing-hero-copy {
  position: relative;
  z-index: 3;
  order: 1;
  min-width: 0;
  padding-block: 20px 38px;
}

.landing-hero-left-column > .landing-segments {
  order: 3;
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: -22px 0 0;
}

.landing-hero-left-column > .landing-segments > .landing-container {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.landing-eyebrow,
.landing-offer-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border: 1px solid rgba(255, 98, 0, 0.62);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--landing-orange-softer);
  color: var(--landing-orange-hover);
  font-size: 0.76rem;
  font-weight: 700;
}

.landing-eyebrow svg,
.landing-offer-label svg {
  width: 16px;
  height: 16px;
}

.landing-hero h1 {
  max-width: 590px;
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 4.2vw, 4.45rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

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

.landing-hero-lead {
  max-width: 555px;
  margin-bottom: 25px;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.landing-inline-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.landing-inline-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #333;
  font-size: 0.78rem;
  font-weight: 600;
}

.landing-inline-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--landing-orange);
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-hero-visual {
  position: relative;
  order: 2;
  min-width: 0;
  height: 560px;
  scroll-margin-top: 90px;
}

.landing-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: var(--landing-orange-soft);
  filter: blur(1px);
}

.landing-orbit-one {
  top: 36px;
  right: -54px;
  width: 250px;
  height: 250px;
  opacity: 0.62;
}

.landing-orbit-two {
  right: 210px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  opacity: 0.42;
}

.landing-dashboard-mockup {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  width: min(100%, 690px);
  height: 390px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(30, 30, 30, 0.12);
}

.mock-dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 12px;
  border-right: 1px solid #efefef;
  background: #fff;
}

.mock-dashboard-sidebar > img {
  width: 66px;
  height: 17px;
  margin: 0 auto 13px;
  object-fit: contain;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  border-radius: 6px;
  padding: 0 8px;
  color: #777;
  font-size: 0.57rem;
  font-weight: 500;
}

.mock-nav-item svg {
  width: 12px;
  height: 12px;
}

.mock-nav-item.is-active {
  background: var(--landing-orange-soft);
  color: var(--landing-orange);
  font-weight: 700;
}

.mock-dashboard-main {
  min-width: 0;
  padding: 20px 18px;
  background: #fdfdfd;
}

.mock-dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: #777;
  font-size: 0.58rem;
}

.mock-dashboard-topbar > strong {
  color: #1a1a1a;
  font-size: 0.78rem;
}

.mock-dashboard-topbar > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mock-avatar {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffe0ca;
  color: var(--landing-orange-hover);
  font-size: 0.47rem;
  font-weight: 800;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 16px;
}

.mock-stats > div {
  min-width: 0;
  min-height: 67px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(20, 20, 20, 0.025);
}

.mock-stats span,
.mock-stats strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-stats span {
  margin-bottom: 7px;
  color: #777;
  font-size: 0.48rem;
}

.mock-stats strong {
  color: #1a1a1a;
  font-size: 0.72rem;
}

.mock-dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.7fr);
  gap: 10px;
}

.mock-orders-panel,
.mock-status-panel {
  min-width: 0;
  min-height: 185px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.mock-panel-title {
  margin-bottom: 11px;
  color: #1d1d1d;
  font-size: 0.59rem;
  font-weight: 700;
}

.mock-order {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 48px;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.46rem;
}

.mock-order:last-child {
  border-bottom: 0;
}

.mock-order > span {
  min-width: 0;
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-order small {
  display: block;
  margin-top: 2px;
  color: #999;
  font-size: 0.4rem;
  font-weight: 400;
}

.mock-order em {
  border-radius: 999px;
  padding: 3px 5px;
  font-size: 0.39rem;
  font-style: normal;
  font-weight: 700;
}

.mock-order em.is-accepted,
.mock-order em.is-ready {
  background: #e7f8e9;
  color: #2b8a3e;
}

.mock-order em.is-preparing {
  background: #fff0e5;
  color: #ef6c00;
}

.mock-order > strong:last-child {
  text-align: right;
}

.mock-status-content {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 126px;
}

.mock-donut {
  display: flex;
  width: 82px;
  height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 12px solid transparent;
  border-radius: 50%;
  background: linear-gradient(#fff, #fff) padding-box, conic-gradient(#ff6200 0 38%, #ff9a52 38% 66%, #dedede 66% 84%, #ffcfb0 84% 100%) border-box;
}

.mock-donut strong {
  font-size: 0.8rem;
  line-height: 1;
}

.mock-donut span {
  color: #777;
  font-size: 0.43rem;
}

.mock-status-content ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #666;
  font-size: 0.42rem;
}

.mock-status-content li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.dot.green { background: #45a557; }
.dot.orange { background: var(--landing-orange); }
.dot.gray { background: #bbb; }
.dot.coral { background: #ff9a52; }

.landing-phone-mockup {
  position: absolute;
  right: 68px;
  bottom: -12px;
  z-index: 3;
  width: 224px;
  height: 390px;
  padding: 8px;
  border: 2px solid #292929;
  border-radius: 34px;
  background: #151515;
  box-shadow: 0 25px 45px rgba(20, 20, 20, 0.24);
  transform: rotate(3.5deg);
}

.mock-phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 12px;
  border-radius: 99px;
  background: #111;
  transform: translateX(-50%);
}

.mock-phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #fff;
}

.mock-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 29px;
  padding: 6px 13px 0;
  font-size: 0.43rem;
  font-weight: 700;
}

.mock-store-head {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
}

.mock-store-symbol {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--landing-orange-soft);
  color: var(--landing-orange);
}

.mock-store-symbol svg,
.mock-store-head > svg {
  width: 13px;
  height: 13px;
  color: var(--landing-orange);
}

.mock-store-head strong,
.mock-store-head span {
  display: block;
}

.mock-store-head strong {
  font-size: 0.56rem;
}

.mock-store-head span {
  margin-top: 1px;
  color: #51a15b;
  font-size: 0.38rem;
}

.mock-promo-banner {
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: space-between;
  margin: 0 9px 9px;
  overflow: hidden;
  border-radius: 9px;
  padding: 10px;
  background: #222;
  color: #fff;
}

.mock-promo-banner b,
.mock-promo-banner small {
  display: block;
}

.mock-promo-banner b {
  font-size: 0.56rem;
}

.mock-promo-banner small {
  color: #ddd;
  font-size: 0.38rem;
}

.mock-pizza-art {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--landing-orange);
  color: #fff;
  transform: rotate(-18deg);
}

.mock-pizza-art svg {
  width: 31px;
  height: 31px;
}

.mock-search {
  display: flex;
  height: 27px;
  align-items: center;
  gap: 5px;
  margin: 0 9px 10px;
  border-radius: 7px;
  padding: 0 8px;
  background: #f6f6f6;
  color: #aaa;
  font-size: 0.39rem;
}

.mock-search svg {
  width: 10px;
  height: 10px;
}

.mock-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 8px 9px;
}

.mock-categories div {
  text-align: center;
}

.mock-categories span,
.mock-categories small {
  display: block;
}

.mock-categories span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3px;
  border-radius: 50%;
  background: var(--landing-orange-soft);
  font-size: 0.78rem;
}

.mock-categories small {
  font-size: 0.36rem;
  font-weight: 600;
}

.mock-menu-title {
  padding: 0 10px 6px;
  color: var(--landing-orange);
  font-size: 0.48rem;
  font-weight: 800;
}

.mock-menu-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 23px;
  align-items: center;
  gap: 7px;
  margin: 0 9px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 7px;
}

.mock-food-thumb {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff1e7;
  font-size: 1.45rem;
}

.mock-menu-item strong,
.mock-menu-item span,
.mock-menu-item s,
.mock-menu-item b {
  display: block;
}

.mock-menu-item strong { font-size: 0.48rem; }
.mock-menu-item span { color: #888; font-size: 0.33rem; }
.mock-menu-item s { color: #aaa; font-size: 0.32rem; }
.mock-menu-item b { color: var(--landing-orange); font-size: 0.43rem; }

.mock-menu-item button {
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--landing-orange);
  color: #fff;
}

.mock-menu-item button svg {
  width: 11px;
  height: 11px;
}

.landing-segments {
  padding: 24px 0 64px;
}

.landing-kicker {
  margin-bottom: 25px;
  color: #8b8b8b;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.landing-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.landing-segments-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #333;
  font-size: 0.77rem;
  font-weight: 600;
}

.landing-segments-grid svg {
  width: 28.5px;
  height: 28.5px;
  color: var(--landing-orange);
  stroke-width: 1.8;
}

.landing-section {
  padding: 76px 0;
}

.landing-section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.landing-section-heading h2,
.landing-founder-copy h2,
.landing-faq-intro h2,
.landing-final-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.landing-section-heading h2 span,
.landing-final-copy h2 span {
  color: var(--landing-orange);
}

.landing-section-heading p,
.landing-founder-copy > p,
.landing-faq-intro > p {
  margin-bottom: 0;
  color: var(--landing-muted);
}

.landing-resources {
  border-top: 1px solid #f1f1f1;
}

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

.landing-resource-card {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 14px;
  min-height: 182px;
  border: 1px solid var(--landing-border);
  border-radius: 15px;
  padding: 23px 20px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(20, 20, 20, 0.025);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-resource-card:hover {
  border-color: rgba(255, 98, 0, 0.28);
  box-shadow: var(--landing-shadow-small);
  transform: translateY(-3px);
}

.landing-resource-card > svg {
  width: 35px;
  height: 35px;
  margin-top: 2px;
  color: var(--landing-orange);
  stroke-width: 1.65;
}

.landing-resource-card h3,
.landing-step h3 {
  margin-bottom: 8px;
  font-size: 0.93rem;
  line-height: 1.35;
}

.landing-resource-card p,
.landing-step p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.landing-how {
  background: var(--landing-surface-soft);
}

.landing-how .landing-section-heading {
  margin-bottom: 48px;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 142px;
  border: 1px solid var(--landing-border);
  border-radius: 15px;
  padding: 24px 18px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(20, 20, 20, 0.025);
}

.landing-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 14px;
  color: #a7a7a7;
  content: "→";
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.landing-step-number {
  position: absolute;
  top: -13px;
  left: 50%;
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--landing-surface-soft);
  border-radius: 50%;
  background: var(--landing-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.landing-step > svg {
  width: 34px;
  height: 34px;
  color: var(--landing-orange);
  stroke-width: 1.7;
}

.landing-founder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 0 16px;
  background:
    radial-gradient(circle at 9% 56%, rgba(255, 98, 0, 0.035), transparent 27%),
    radial-gradient(circle at 91% 66%, rgba(255, 98, 0, 0.09), transparent 31%),
    linear-gradient(to bottom, #fff 0%, #fffaf7 16%, #fff8f3 61%, #fff 100%);
}

.landing-founder::before,
.landing-founder::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.landing-founder::before {
  right: -150px;
  bottom: -120px;
  width: 760px;
  height: 600px;
  border-radius: 50% 0 0;
  background: radial-gradient(ellipse at 75% 62%, rgba(255, 98, 0, 0.11), rgba(255, 98, 0, 0.035) 52%, transparent 74%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 75%, transparent 100%);
}

.landing-founder::after {
  right: 38px;
  bottom: 84px;
  width: 180px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 98, 0, 0.24) 1.2px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.landing-founder-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.landing-founder-decoration::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-radial-gradient(ellipse at center, transparent 0 14px, rgba(255, 98, 0, 0.1) 15px 16px, transparent 17px 29px);
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
}

.landing-founder-decoration-left {
  bottom: -270px;
  left: -300px;
  width: 640px;
  height: 640px;
}

.landing-founder-decoration-right {
  top: 160px;
  right: -370px;
  width: 700px;
  height: 700px;
}

.landing-founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(580px, 0.98fr);
  align-items: start;
  gap: 26px;
  width: min(calc(100% - 64px), 1320px);
  max-width: 1320px;
}

.landing-founder-copy {
  min-width: 0;
  padding-top: 2px;
}

.landing-founder .landing-offer-label {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.83rem;
}

.landing-founder-copy h2 {
  max-width: 600px;
  margin: 24px 0 14px;
  font-size: clamp(2.8rem, 3.2vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.13;
}

.landing-founder-copy h2 span,
.landing-founder-copy > p strong {
  color: var(--landing-orange);
}

.landing-founder-copy > p {
  max-width: 620px;
  margin-bottom: 20px;
  color: #5d6270;
  font-size: 0.94rem;
  line-height: 1.55;
}

.landing-founder-copy > p strong {
  font-weight: 500;
}

.landing-founder-reasons h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 98, 0, 0.27);
  font-size: 1.08rem;
}

.landing-founder-reasons h3 svg {
  width: 20px;
  height: 20px;
  color: var(--landing-orange);
  fill: currentColor;
}

.landing-founder-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 8px;
}

.landing-founder-benefit {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: 36px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  row-gap: 8px;
  min-width: 0;
  min-height: 140px;
  height: 100%;
  border: 1px solid rgba(255, 98, 0, 0.2);
  border-radius: 13px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.landing-founder-benefit > svg {
  grid-column: 1;
  grid-row: 1;
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  border-radius: 9px;
  padding: 7px;
  background: var(--landing-orange-soft);
  color: var(--landing-orange);
  stroke-width: 2.2;
}

.landing-founder-benefit > div {
  display: contents;
}

.landing-founder-benefit h4 {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  min-height: 0;
  margin: 1px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.landing-founder-benefit p {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: #4f5561;
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-founder-launch {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  margin: 12px 14px 0;
  border-radius: 16px;
  padding: 16px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 120, 0, 0.26), transparent 24%),
    linear-gradient(118deg, #1d0901, #3b1303 58%, #4b1a05);
  color: #fff;
  box-shadow: 0 14px 34px rgba(67, 22, 2, 0.23);
}

.landing-founder-launch-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 133, 0, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, #ffba22, #ff6500 65%, rgba(255, 98, 0, 0.3) 67%);
  box-shadow: 0 0 32px rgba(255, 98, 0, 0.35);
}

.landing-founder-launch-icon svg {
  width: 34px;
  height: 34px;
  color: #fff;
  fill: rgba(255, 255, 255, 0.72);
}

.landing-founder-launch h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #ff6a00;
  font-size: 1.1rem;
}

.landing-founder-launch h3 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.landing-founder-launch p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.landing-founder-launch p strong {
  color: #ff6a00;
}

.landing-founder-offer-column {
  min-width: 0;
}

.landing-price-card {
  overflow: visible;
  border: 1.5px solid var(--landing-orange);
  border-radius: 18px;
  padding: 0;
  background: #fff;
  box-shadow: 0 22px 52px rgba(73, 33, 10, 0.12);
}

.landing-price-header {
  position: relative;
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(105deg, #ff7200, #ff4d00);
  color: #fff;
}

.landing-price-header > strong {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.landing-price-header > svg {
  width: 27px;
  height: 27px;
  color: #ffe46f;
}

.landing-price-header > svg:last-child {
  transform: scaleX(-1);
}

.landing-founder-medal {
  position: absolute;
  top: -24px;
  left: 30px;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 7px solid #ffb01d;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff2a8, #ffb21a 60%, #f08200);
  box-shadow: 0 5px 0 #e98000, 0 10px 24px rgba(164, 75, 0, 0.25);
}

.landing-founder-medal::before,
.landing-founder-medal::after {
  position: absolute;
  inset: 5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  content: "";
}

.landing-founder-medal svg {
  width: 34px;
  height: 34px;
  color: #8f3d00;
  fill: currentColor;
}

.landing-price-body {
  padding: 22px 26px 18px;
}

.landing-slots {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #555b69;
  text-align: center;
}

.landing-slots small:first-child {
  font-size: 0.86rem;
}

.landing-slots small:last-child {
  font-size: 1.08rem;
}

.landing-slots strong {
  position: relative;
  display: flex;
  gap: 8px;
}

.landing-slots strong::before,
.landing-slots strong::after {
  position: absolute;
  top: 28px;
  width: 45px;
  height: 44px;
  background:
    linear-gradient(22deg, transparent 45%, var(--landing-orange) 46% 54%, transparent 55%) 2px 22px / 22px 8px no-repeat,
    linear-gradient(70deg, transparent 45%, var(--landing-orange) 46% 54%, transparent 55%) 24px 0 / 13px 28px no-repeat;
  content: "";
}

.landing-slots strong::before { right: calc(100% + 26px); }
.landing-slots strong::after { left: calc(100% + 26px); transform: scaleX(-1); }

.landing-slots strong span {
  display: flex;
  width: 64px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e1e1;
  border-radius: 13px;
  background: linear-gradient(#fff, #fbfbfb);
  color: #ff4f08;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.13);
}

.landing-founder-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: center;
  margin: 14px 8px 20px;
  overflow: hidden;
  border: 1px solid var(--landing-orange);
  border-radius: 999px;
  color: var(--landing-orange-hover);
}

.landing-founder-progress-track {
  position: relative;
  height: 32px;
  overflow: hidden;
  border-radius: inherit;
  background: #fff7f1;
}

.landing-founder-progress-track > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7900, #ff4e00);
  transition: width 0.4s ease;
}

.landing-founder-progress-track > strong {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  color: #fff;
  font-size: 0.78rem;
  white-space: nowrap;
}

.landing-founder-progress-track svg {
  width: 15px;
  height: 15px;
  fill: #ffe96f;
  color: #ffe96f;
  filter: drop-shadow(0 0 4px rgba(255, 233, 111, 0.85));
}

.landing-founder-progress > b {
  text-align: center;
  font-size: 0.88rem;
}

.landing-founder-pricing {
  display: grid;
  grid-template-columns: 1fr 124px 1fr;
  align-items: center;
  min-height: 156px;
  border-top: 1px dotted #d5d5d5;
  padding-top: 12px;
  text-align: center;
}

.landing-founder-pricing small {
  display: block;
  margin-bottom: 12px;
  color: #565b68;
  font-size: 0.81rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-founder-pricing p {
  margin: 10px 0 0;
  color: #555b68;
  font-size: 0.76rem;
  line-height: 1.45;
}

.landing-founder-future-price > strong,
.landing-founder-current-price > strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-size: 2.35rem;
  line-height: 1;
}

.landing-founder-future-price > strong { color: #737783; }
.landing-founder-future-price del { text-decoration-thickness: 3px; }
.landing-founder-current-price > strong { color: #ff5107; }

.landing-founder-future-price strong span,
.landing-founder-current-price strong span {
  font-size: 1rem;
}

.landing-founder-future-price em,
.landing-founder-current-price em {
  color: #454b57;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
}

.landing-founder-current-price > small { color: #ff5107; }
.landing-founder-current-price p b { color: #ff5107; }
.landing-founder-current-price p svg { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; color: #ff5107; fill: currentColor; }

.landing-founder-saving {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  justify-self: center;
  border: 1px solid rgba(255, 98, 0, 0.23);
  border-radius: 50%;
  background: #fffdfb;
  color: #ff5107;
}

.landing-founder-saving::before,
.landing-founder-saving::after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 22px;
  background: #e1e1e1;
  content: "";
}
.landing-founder-saving::before { bottom: 100%; }
.landing-founder-saving::after { top: 100%; }

.landing-founder-saving strong { font-size: 2.25rem; line-height: 1; }
.landing-founder-saving strong small { display: inline; margin: 0; color: inherit; font-size: 1rem; }
.landing-founder-saving span { font-size: 0.58rem; font-weight: 800; text-transform: uppercase; }

.landing-founder-guarantee {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 14px;
  border: 1px solid rgba(255, 98, 0, 0.24);
  border-radius: 11px;
  background: linear-gradient(90deg, #fff9f4, #fff);
}

.landing-founder-guarantee > svg {
  width: 35px;
  height: 35px;
  color: var(--landing-orange);
  stroke-width: 2.4;
}

.landing-founder-guarantee div { display: grid; }
.landing-founder-guarantee strong { color: var(--landing-orange); font-size: 0.95rem; }
.landing-founder-guarantee span { font-size: 0.78rem; line-height: 1.35; }

.landing-price-cta {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(255, 98, 0, 0.2);
}

.landing-price-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
  margin-top: 12px;
  color: #555b68;
  font-size: 0.78rem;
}

.landing-price-notes span { display: inline-flex; align-items: center; gap: 8px; }
.landing-price-notes svg { width: 17px; height: 17px; color: var(--landing-orange); }

.landing-founder-priority {
  margin-top: 8px;
  border: 1px solid rgba(255, 98, 0, 0.17);
  border-radius: 15px;
  padding: 12px 18px 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 32px rgba(112, 44, 0, 0.07);
}

.landing-founder-priority h3 {
  margin-bottom: 8px;
  color: var(--landing-orange);
  font-size: 0.84rem;
  text-align: center;
}

.landing-founder-priority > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-founder-priority span {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  border-right: 1px solid rgba(255, 98, 0, 0.22);
  text-align: center;
}

.landing-founder-priority span:last-child { border-right: 0; }
.landing-founder-priority svg { width: 26px; height: 26px; color: var(--landing-orange); }
.landing-founder-priority strong { font-size: 0.74rem; line-height: 1.18; }

.landing-price-card.is-full { border-color: #c9c9c9; }
.landing-price-card.is-full .landing-price-header { background: #777; }

.landing-testimonials {
  padding-top: 58px;
  background: var(--landing-surface-soft);
}

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

.landing-testimonial {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  min-height: 195px;
  border: 1px solid var(--landing-border);
  border-radius: 15px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(20, 20, 20, 0.025);
}

.landing-testimonial-avatar {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #777;
}

.landing-testimonial-avatar svg {
  width: 23px;
  height: 23px;
}

.landing-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 11px;
  color: var(--landing-orange);
}

.landing-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.landing-testimonial p {
  margin-bottom: 13px;
  color: #444;
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.6;
}

.landing-testimonial strong,
.landing-testimonial span {
  display: block;
}

.landing-testimonial strong {
  font-size: 0.78rem;
}

.landing-testimonial span {
  color: #777;
  font-size: 0.68rem;
}

.landing-faq {
  background: #fff;
}

.landing-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
  max-width: 1050px;
}

.landing-faq-intro .landing-kicker {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--landing-orange);
  text-align: left;
}

.landing-faq-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.landing-faq-list {
  border-top: 1px solid var(--landing-border);
}

.landing-faq-list details {
  border-bottom: 1px solid var(--landing-border);
}

.landing-faq-list summary {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 2px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.landing-faq-list summary::-webkit-details-marker {
  display: none;
}

.landing-faq-list summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--landing-orange);
  transition: transform 0.2s ease;
}

.landing-faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.landing-faq-list details p {
  max-width: 670px;
  margin: -2px 36px 18px 2px;
  color: var(--landing-muted);
  font-size: 0.83rem;
}

.landing-final-cta {
  padding: 10px 0 78px;
}

.landing-final-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid #ffe6d6;
  border-radius: 24px;
  padding: 42px 48px;
  background: var(--landing-orange-softer);
}

.landing-final-symbol {
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--landing-shadow-small);
}

.landing-final-symbol img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.landing-final-copy h2 {
  max-width: 620px;
  margin-bottom: 7px;
}

.landing-final-copy > p {
  margin-bottom: 20px;
  color: var(--landing-muted);
}

.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-btn-link {
  color: var(--landing-ink) !important;
}

.landing-btn-link:hover {
  color: var(--landing-orange) !important;
}

.landing-final-benefits {
  display: grid;
  min-width: 188px;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-final-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 600;
}

.landing-final-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--landing-orange);
}

.landing-footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--landing-border);
  background: #fff;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 0.65fr));
  gap: 50px;
  padding-bottom: 42px;
}

.landing-footer-brand p {
  max-width: 290px;
  margin: 15px 0 0;
  color: var(--landing-muted);
  font-size: 0.82rem;
}

.landing-footer-grid > div:not(.landing-footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.landing-footer-grid strong {
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.landing-footer-grid a {
  color: var(--landing-muted);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

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

.landing-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--landing-border);
  color: #777;
  font-size: 0.72rem;
}

.landing-footer-bottom p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 1360px) {
  .landing-header .landing-header-inner {
    grid-template-columns: 220px minmax(0, 1fr) 290px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .landing-nav {
    justify-content: flex-start;
    gap: 51px;
    padding-left: 164px;
  }

  .landing-header-actions {
    gap: 39px;
  }

  .landing-btn-header {
    min-height: 44px;
    padding-inline: 26px;
  }

  .landing-hero {
    overflow: visible;
    padding: 0;
  }

  .landing-hero-grid {
    position: relative;
    top: -44px;
    grid-template-columns: 540px minmax(0, 1fr);
    align-items: start;
    gap: 50px;
    width: min(calc(100% - 80px), 1440px);
    min-height: min(900px, calc(100svh - 61px));
  }

  .landing-hero-left-column {
    position: relative;
    display: flex;
    min-width: 0;
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 4px;
    inset-inline-start: clamp(-202px, calc(758px - 50vw), -10px);
  }

  .landing-hero-copy {
    padding: 12px 0 0 60px;
  }

  .landing-eyebrow {
    gap: 9px;
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  .landing-eyebrow svg {
    width: 20px;
    height: 20px;
  }

  .landing-hero h1 {
    max-width: 480px;
    margin: 26px 0 30px;
    font-size: clamp(3.25rem, 3.75vw, 3.65rem);
    line-height: 1.05;
  }

  .landing-hero h1 span {
    display: block;
  }

  .landing-hero-lead {
    max-width: 500px;
    margin-bottom: 39px;
    font-size: 1.02rem;
  }

  .landing-inline-benefits {
    gap: 12px 27px;
    margin-bottom: 32px;
  }

  .landing-inline-benefits li {
    font-size: 0.82rem;
  }

  .landing-hero-actions {
    width: max-content;
    flex-wrap: nowrap;
    gap: 22px;
  }

  .landing-hero-actions .landing-btn {
    min-height: 58px;
  }

  #heroPrimaryCta {
    padding-inline: 43px;
  }

  .landing-hero-actions .landing-btn-secondary {
    padding-inline: 37px;
  }

  .landing-hero-visual {
    align-self: start;
    height: 560px;
    overflow: visible;
  }

  .landing-dashboard-mockup {
    top: 26px;
    right: 30px;
    grid-template-columns: 130px minmax(0, 1fr);
    width: 690px;
    height: 416px;
    transform: scale(1.18);
    transform-origin: top right;
  }

  .mock-dashboard-sidebar > img {
    width: 105px;
    height: 25px;
  }

  .landing-phone-mockup {
    top: 412px;
    right: 195px;
    bottom: auto;
    width: 240px;
    height: 420px;
  }

  .landing-orbit-one {
    top: 135px;
    right: -28px;
    width: 245px;
    height: 270px;
    background: radial-gradient(circle, rgba(255, 98, 0, 0.28) 1.2px, transparent 1.6px);
    background-size: 10px 10px;
    opacity: 0.7;
  }

  .landing-orbit-two {
    top: 195px;
    right: auto;
    bottom: auto;
    left: -58px;
    width: 155px;
    height: 190px;
    opacity: 0.62;
  }

  .landing-hero-left-column > .landing-segments {
    position: static;
    grid-column: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .landing-hero-left-column > .landing-segments > .landing-container,
  .landing-hero-left-column .landing-kicker,
  .landing-hero-left-column .landing-segments-grid {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}

/* Release 025: favicon final sem fundo ou bordas internas */
.landing-final-card .landing-final-symbol {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.landing-final-card .landing-final-symbol img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media (min-width: 1360px) and (max-width: 1439px) {
  .landing-dashboard-mockup {
    transform: scale(1);
  }
}

@media (min-width: 1440px) and (max-width: 1499px) {
  .landing-dashboard-mockup {
    transform: scale(1.1);
  }
}

@media (max-width: 1120px) {
  .landing-header .landing-header-inner {
    grid-template-columns: 190px minmax(0, 1fr) 235px;
    padding-inline: 22px;
  }

  .landing-header .landing-brand img {
    width: 156px;
    height: auto;
  }

  .landing-nav {
    gap: 14px;
  }

  .landing-header-actions {
    gap: 16px;
  }

  .landing-hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
    gap: 22px;
  }

  .landing-dashboard-mockup {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .mock-dashboard-sidebar {
    padding-inline: 9px;
  }

  .landing-phone-mockup {
    right: 34px;
  }

  .landing-resource-card {
    grid-template-columns: 35px minmax(0, 1fr);
    padding-inline: 17px;
  }

  .landing-resource-card > svg {
    width: 30px;
    height: 30px;
  }

  .landing-final-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .landing-final-symbol {
    width: 90px;
    height: 90px;
  }

  .landing-final-symbol img {
    width: 70px;
    height: 70px;
  }

  .landing-final-benefits {
    grid-column: 2;
    grid-template-columns: repeat(3, auto);
  }
}

@media (max-width: 980px) {
  .landing-header .landing-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 10px;
  }

  .landing-header-actions {
    display: flex;
    gap: 0;
  }

  .landing-header-actions .landing-btn-header {
    display: none;
  }

  .landing-header-actions .landing-link-login {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--landing-orange);
    border-radius: 10px;
    padding: 8px 13px;
    background: var(--landing-orange);
    box-shadow: 0 7px 16px rgba(255, 98, 0, 0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
  }

  .landing-header-actions .landing-link-login:hover {
    border-color: var(--landing-orange-hover);
    background: var(--landing-orange-hover);
    color: #fff;
  }

  .landing-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #fff;
    color: var(--landing-ink);
  }

  .landing-menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .landing-nav {
    position: absolute;
    top: 61px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 12px;
    background: #fff;
    box-shadow: var(--landing-shadow);
  }

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

  .landing-nav > a {
    padding: 12px;
  }

  .landing-nav > a::after {
    display: none;
  }

  .landing-nav-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--landing-border);
  }

  .landing-nav-mobile-actions .landing-btn {
    width: min(100%, 240px);
  }

  .landing-hero {
    padding-top: 32px;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .landing-hero-copy {
    max-width: 720px;
    padding-bottom: 8px;
  }

  .landing-hero h1 {
    max-width: 720px;
    font-size: clamp(2.7rem, 7vw, 4.3rem);
  }

  .landing-hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

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

  .landing-resource-card {
    min-height: 152px;
  }

  .landing-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .landing-step:nth-child(2)::after {
    display: none;
  }

  .landing-founder-grid,
  .landing-faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .landing-founder-copy,
  .landing-faq-intro {
    max-width: 650px;
  }

  .landing-price-card {
    width: min(100%, 650px);
  }

  .landing-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .landing-testimonial {
    min-height: 0;
  }

  .landing-footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(120px, 0.8fr));
    gap: 28px;
  }
}

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

  .landing-header {
    height: 50px;
  }

  .landing-brand img,
  .landing-footer-brand img {
    width: 124px;
    height: 32px;
  }

  .landing-header .landing-brand img {
    width: 128px;
    height: auto;
  }

  .landing-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .landing-nav {
    top: 55px;
    right: 16px;
    left: 16px;
  }

  .landing-hero {
    padding-top: 22px;
  }

  .landing-hero h1 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .landing-hero-lead {
    font-size: 0.93rem;
  }

  .landing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-hero-actions .landing-btn {
    width: 100%;
  }

  .landing-hero-visual {
    height: 445px;
  }

  .landing-dashboard-mockup {
    top: 24px;
    grid-template-columns: 78px minmax(0, 1fr);
    height: 320px;
  }

  .mock-dashboard-sidebar {
    gap: 2px;
    padding: 14px 6px;
  }

  .mock-dashboard-sidebar > img {
    width: 54px;
    height: 14px;
    margin-bottom: 8px;
  }

  .mock-nav-item {
    gap: 4px;
    min-height: 25px;
    padding-inline: 5px;
    font-size: 0.46rem;
  }

  .mock-nav-item svg {
    width: 9px;
    height: 9px;
  }

  .mock-dashboard-main {
    padding: 14px 11px;
  }

  .mock-dashboard-topbar {
    margin-bottom: 13px;
  }

  .mock-dashboard-topbar > strong {
    font-size: 0.65rem;
  }

  .mock-stats {
    gap: 5px;
    margin-bottom: 9px;
  }

  .mock-stats > div {
    min-height: 52px;
    padding: 7px;
  }

  .mock-stats span {
    margin-bottom: 4px;
    font-size: 0.39rem;
  }

  .mock-stats strong {
    font-size: 0.55rem;
  }

  .mock-dashboard-panels {
    grid-template-columns: 1fr 125px;
    gap: 6px;
  }

  .mock-orders-panel,
  .mock-status-panel {
    min-height: 155px;
    padding: 8px;
  }

  .mock-order {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-height: 34px;
  }

  .mock-order em {
    display: none;
  }

  .mock-status-content {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 6px;
  }

  .mock-donut {
    width: 58px;
    height: 58px;
    border-width: 9px;
  }

  .landing-phone-mockup {
    right: 24px;
    bottom: 0;
    width: 170px;
    height: 302px;
    border-radius: 28px;
  }

  .mock-phone-screen {
    border-radius: 21px;
  }

  .mock-phone-speaker {
    width: 45px;
    height: 9px;
  }

  .mock-phone-status {
    height: 21px;
  }

  .mock-store-head {
    grid-template-columns: 22px minmax(0, 1fr) 12px;
    gap: 5px;
    padding: 7px;
  }

  .mock-store-symbol {
    width: 22px;
    height: 22px;
  }

  .mock-promo-banner {
    height: 52px;
    margin: 0 7px 7px;
    padding: 7px;
  }

  .mock-pizza-art {
    width: 40px;
    height: 40px;
  }

  .mock-pizza-art svg {
    width: 24px;
    height: 24px;
  }

  .mock-search {
    height: 22px;
    margin: 0 7px 7px;
  }

  .mock-categories {
    padding-inline: 6px;
  }

  .mock-categories span {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }

  .mock-menu-title,
  .mock-menu-item {
    display: none;
  }

  .landing-segments {
    padding: 24px 0 50px;
  }

  .landing-segments-grid {
    grid-template-columns: repeat(5, minmax(76px, 1fr));
    gap: 6px;
    overflow-x: auto;
    padding: 0 1px 10px;
    scrollbar-width: none;
  }

  .landing-segments-grid::-webkit-scrollbar {
    display: none;
  }

  .landing-section {
    padding: 58px 0;
  }

  .landing-section-heading {
    margin-bottom: 30px;
  }

  .landing-resource-grid,
  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-resource-card {
    min-height: 0;
  }

  .landing-steps {
    gap: 30px;
  }

  .landing-step {
    min-height: 120px;
  }

  .landing-step:not(:last-child)::after {
    display: none;
  }

  .landing-step-number {
    top: 50%;
    left: -13px;
    border-color: var(--landing-surface-soft);
    transform: translateY(-50%);
  }

  .landing-founder-grid {
    gap: 34px;
  }

  .landing-price-card {
    padding: 24px;
  }

  .landing-testimonial {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px;
  }

  .landing-testimonial-avatar {
    width: 42px;
    height: 42px;
  }

  .landing-final-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px;
  }

  .landing-final-symbol {
    width: 74px;
    height: 74px;
  }

  .landing-final-symbol img {
    width: 58px;
    height: 58px;
  }

  .landing-final-benefits {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .landing-header .landing-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-inline: 12px;
  }

  .landing-nav-mobile-actions {
    grid-template-columns: minmax(72px, 0.65fr) minmax(164px, 1.35fr);
    gap: 8px;
  }

  .landing-nav-mobile-actions .landing-btn {
    padding-inline: 12px;
    white-space: nowrap;
  }

  .landing-eyebrow {
    padding: 6px 11px;
    font-size: 0.7rem;
  }

  .landing-inline-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-hero h1 {
    font-size: clamp(2.05rem, 10.9vw, 2.85rem);
    letter-spacing: -0.045em;
  }

  .landing-hero-visual {
    height: 355px;
    margin-top: 4px;
  }

  .landing-dashboard-mockup {
    top: 17px;
    grid-template-columns: 1fr;
    height: 245px;
  }

  .mock-dashboard-sidebar {
    display: none;
  }

  .mock-dashboard-main {
    padding: 12px;
  }

  .mock-dashboard-topbar {
    margin-bottom: 10px;
  }

  .mock-dashboard-topbar > span {
    display: none;
  }

  .mock-stats > div {
    min-height: 45px;
    padding: 6px;
  }

  .mock-stats > div:nth-child(4) {
    display: none;
  }

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

  .mock-dashboard-panels {
    grid-template-columns: 1fr 104px;
  }

  .mock-orders-panel,
  .mock-status-panel {
    min-height: 135px;
  }

  .mock-status-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .mock-status-content ul {
    display: none;
  }

  .landing-phone-mockup {
    right: 16px;
    width: 130px;
    height: 232px;
    padding: 6px;
    border-radius: 23px;
  }

  .mock-phone-screen {
    border-radius: 17px;
  }

  .mock-phone-status,
  .mock-search,
  .mock-categories {
    display: none;
  }

  .mock-store-head {
    padding-top: 16px;
  }

  .mock-store-head strong {
    font-size: 0.42rem;
  }

  .mock-promo-banner {
    height: 46px;
    margin-top: 5px;
  }

  .landing-section-heading h2,
  .landing-founder-copy h2,
  .landing-faq-intro h2,
  .landing-final-copy h2 {
    font-size: 1.75rem;
  }

  .landing-resource-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 17px;
  }

  .landing-price-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-slots {
    width: 100%;
    align-items: end;
  }

  .landing-price > strong {
    font-size: 2.75rem;
  }

  .landing-price-notes {
    align-items: center;
    flex-direction: column;
  }

  .landing-faq-list summary {
    font-size: 0.86rem;
  }

  .landing-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-final-actions .landing-btn {
    width: 100%;
  }

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

  .landing-footer-brand {
    grid-column: auto;
  }
}

/* Release 009: FAQ e chamada final conforme referência aprovada */
.landing-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 110px;
  background:
    radial-gradient(circle at 10% 76%, rgba(255, 98, 0, 0.08), transparent 24%),
    radial-gradient(circle at 94% 72%, rgba(255, 98, 0, 0.08), transparent 28%),
    linear-gradient(to bottom, #fff 0%, #fff 72%, #fff9f5 100%);
}

.landing-faq-decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.landing-faq-decoration-dots {
  top: 34px;
  right: 30px;
  width: 140px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 98, 0, 0.22) 1.25px, transparent 1.7px);
  background-size: 20px 20px;
  opacity: 0.55;
}

.landing-faq-decoration-lines {
  right: -250px;
  bottom: -185px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: repeating-radial-gradient(ellipse at center, transparent 0 13px, rgba(255, 98, 0, 0.1) 14px 15px, transparent 16px 28px);
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 76%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 76%, transparent);
}

.landing-faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(50px, 6vw, 90px);
  width: min(calc(100% - 64px), 1400px);
  max-width: 1400px;
}

.landing-faq-intro {
  position: relative;
  min-width: 0;
  min-height: 495px;
}

.landing-faq-intro .landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 98, 0, 0.72);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--landing-orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-faq-intro .landing-kicker svg {
  width: 17px;
  height: 17px;
}

.landing-faq-intro h2 {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 3.25vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.landing-faq-intro h2 span {
  display: block;
  color: var(--landing-orange);
}

.landing-faq-intro > p {
  max-width: 420px;
  color: #555b68;
  font-size: 1rem;
  line-height: 1.65;
}

.landing-faq-mascot {
  position: absolute;
  bottom: -172px;
  left: 8px;
  width: 400px;
  height: 370px;
  margin: 0;
  overflow: hidden;
}

.landing-faq-mascot::before {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 300px;
  height: 230px;
  border-radius: 50% 50% 44% 48%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 98, 0, 0.13), rgba(255, 98, 0, 0.04) 63%, transparent 65%);
  content: "";
}

.landing-faq-mascot::after {
  content: none;
}

.landing-faq-mascot img {
  position: absolute;
  top: 0;
  right: 25px;
  z-index: 1;
  width: 350px;
  height: auto;
  filter: drop-shadow(0 15px 16px rgba(70, 31, 6, 0.16));
}

.landing-faq-list {
  display: grid;
  gap: 16px;
  border: 0;
}

.landing-faq-list details {
  min-width: 0;
  border: 1px solid #ececec;
  border-radius: 13px;
  padding: 0 24px 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.045);
}

.landing-faq-list summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 20px;
  min-height: 61px;
  align-items: center;
  gap: 18px;
  padding: 7px 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.landing-faq-list summary > svg {
  width: 20px;
  height: 20px;
  color: var(--landing-orange);
}

.landing-faq-list details[open] summary > svg {
  transform: rotate(180deg);
}

.landing-faq-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--landing-orange);
}

.landing-faq-list summary .landing-faq-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 2.15;
  transform: none;
  transition: none;
}

.landing-faq-list details p {
  max-width: none;
  margin: -9px 30px 0 76px;
  color: #30343d;
  font-size: 0.8rem;
  line-height: 1.5;
}

.landing-final-cta {
  position: relative;
  isolation: isolate;
  padding: 0 0 64px;
  background: linear-gradient(to bottom, #fff9f5 0%, #fff 100%);
}

.landing-final-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 225px 180px;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 64px), 1400px);
  min-height: 285px;
  overflow: visible;
  border: 1px solid rgba(255, 98, 0, 0.62);
  border-radius: 24px;
  padding: 38px 54px;
  background:
    radial-gradient(circle at 83% 50%, rgba(255, 98, 0, 0.12), transparent 30%),
    linear-gradient(110deg, #fffdfb, #fff5ed);
  box-shadow: 0 18px 40px rgba(90, 42, 8, 0.08);
}

.landing-final-decoration {
  position: absolute;
  right: 130px;
  bottom: 16px;
  width: 330px;
  height: 210px;
  background: repeating-radial-gradient(ellipse at center, transparent 0 12px, rgba(255, 98, 0, 0.07) 13px 14px, transparent 15px 27px);
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 28%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 28%, transparent);
  pointer-events: none;
}

.landing-final-symbol {
  position: relative;
  z-index: 1;
  display: flex;
  width: 160px;
  height: 160px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 15px 28px rgba(255, 98, 0, 0.16);
}

.landing-final-symbol img {
  width: 105px;
  height: 105px;
}

.landing-final-copy {
  position: relative;
  z-index: 2;
}

.landing-final-copy h2 {
  max-width: 610px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  line-height: 1.14;
}

.landing-final-copy > p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.landing-final-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 18px;
}

.landing-final-benefits li {
  font-size: 0.77rem;
  font-weight: 700;
}

.landing-final-benefits svg {
  width: 19px;
  height: 19px;
}

.landing-final-mascot {
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: 3;
  width: 340px;
  height: 400px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-final-mascot img {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: auto;
  filter: drop-shadow(0 18px 16px rgba(68, 29, 4, 0.17));
}

@media (max-width: 1100px) {
  .landing-faq-intro {
    min-height: 340px;
  }

  .landing-faq-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 48px), 820px);
  }

  .landing-faq-intro h2,
  .landing-faq-intro > p {
    max-width: 650px;
  }

  .landing-faq-mascot {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: auto;
    width: 220px;
    height: 240px;
  }

  .landing-faq-mascot img {
    top: 0;
    right: 6px;
    width: 185px;
  }

  .landing-final-card {
    grid-template-columns: 110px minmax(0, 1fr) 190px;
    gap: 26px;
    width: min(calc(100% - 48px), 900px);
    padding: 34px;
  }

  .landing-final-symbol {
    width: 110px;
    height: 110px;
  }

  .landing-final-symbol img {
    width: 78px;
    height: 78px;
  }

  .landing-final-benefits {
    grid-column: 2;
  }

  .landing-final-mascot {
    right: 10px;
    width: 155px;
    height: 260px;
  }

  .landing-final-mascot img {
    width: 148px;
  }
}

@media (max-width: 700px) {
  .landing-faq {
    padding: 48px 0 32px;
  }

  .landing-faq-layout {
    gap: 28px;
    width: min(calc(100% - 28px), 650px);
  }

  .landing-faq-intro {
    min-height: 0;
  }

  .landing-faq-intro h2 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .landing-faq-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 240px;
    height: 220px;
    margin: 12px auto -18px;
  }

  .landing-faq-mascot img {
    top: 0;
    right: 14px;
    width: 190px;
  }

  .landing-faq-list {
    gap: 11px;
  }

  .landing-faq-list details {
    padding: 0 15px 14px;
  }

  .landing-faq-list summary {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 10px;
    font-size: 0.88rem;
  }

  .landing-faq-icon {
    width: 42px;
    height: 42px;
  }

  .landing-faq-list summary .landing-faq-icon svg {
    width: 38px;
    height: 38px;
  }

  .landing-faq-list details p {
    margin: -5px 8px 0 56px;
    font-size: 0.76rem;
  }

  .landing-final-cta {
    padding-bottom: 42px;
  }

  .landing-final-card {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(calc(100% - 28px), 650px);
    padding: 28px 22px 150px;
  }

  .landing-final-symbol {
    width: 86px;
    height: 86px;
  }

  .landing-final-symbol img {
    width: 62px;
    height: 62px;
  }

  .landing-final-copy h2 {
    font-size: 1.8rem;
  }

  .landing-final-benefits {
    grid-column: auto;
  }

  .landing-final-mascot {
    right: 18px;
    bottom: -10px;
    width: 120px;
    height: 180px;
  }

  .landing-final-mascot img {
    right: 0;
    width: 118px;
  }
}

@media (max-width: 360px) {
  .landing-header .landing-brand img {
    width: 116px;
    height: auto;
  }

  .landing-nav-mobile-actions {
    grid-template-columns: 1fr;
  }

  .landing-hero h1 {
    font-size: 2rem;
  }

  .landing-btn-large {
    padding-inline: 14px;
  }

  .landing-dashboard-panels {
    grid-template-columns: 1fr 92px;
  }

  .mock-order {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .mock-order > strong:last-child {
    display: none;
  }

  .landing-phone-mockup {
    right: 10px;
    width: 120px;
  }

  .landing-price-card,
  .landing-final-card {
    padding-inline: 18px;
  }

  .landing-testimonial {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Capturas reais do PedeFi no hero */
.landing-dashboard-real-card {
  position: absolute;
  top: 7px;
  right: 0;
  z-index: 1;
  width: min(100%, 850px);
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #e6e8ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(20, 20, 20, 0.22), 0 8px 24px rgba(20, 20, 20, 0.08);
}

.landing-dashboard-real-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 11px;
}

.landing-phone-real-frame {
  position: absolute;
  top: 279px;
  right: 54px;
  z-index: 3;
  width: 180px;
  margin: 0;
  padding: 9px 7px 10px;
  box-sizing: border-box;
  border: 2px solid #1b1d21;
  border-radius: 34px;
  background: #111318;
  box-shadow: 0 24px 46px rgba(20, 20, 20, 0.26);
  transform: rotate(1.5deg);
  transform-origin: center;
}

.landing-phone-real-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 25px;
}

@media (min-width: 981px) and (max-width: 1359px) {
  .landing-dashboard-real-card {
    top: 42px;
    width: 100%;
  }

  .landing-phone-real-frame {
    top: 265px;
    right: 28px;
    width: 205px;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .landing-hero-visual {
    width: min(100%, 760px);
    height: 710px;
    margin-inline: auto;
    overflow: visible;
  }

  .landing-dashboard-real-card {
    top: 16px;
    width: 100%;
  }

  .landing-phone-real-frame {
    top: 270px;
    right: 40px;
    width: 205px;
  }
}

@media (max-width: 700px) {
  .landing-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 12px;
    overflow: visible;
  }

  .landing-dashboard-real-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 5px;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(20, 20, 20, 0.12);
  }

  .landing-dashboard-real-card img {
    border-radius: 9px;
  }

  .landing-phone-real-frame {
    position: relative;
    top: auto;
    right: auto;
    width: min(50vw, 180px);
    margin-top: -28px;
    padding: 7px 5px 8px;
    border-radius: 29px;
    transform: rotate(1deg);
    box-shadow: 0 20px 38px rgba(20, 20, 20, 0.24);
  }

  .landing-phone-real-frame img {
    border-radius: 21px;
  }
}

/* Composição ampliada das capturas reais */
@media (min-width: 1600px) {
  .landing-hero-visual {
    margin-top: 102px;
  }

  .landing-dashboard-real-card {
    top: 42px;
    right: clamp(-200px, calc(580px - 40.625vw), -70px);
    width: clamp(960px, calc(37.5vw + 360px), 1080px);
    box-shadow: 0 28px 72px rgba(20, 20, 20, 0.18), 0 8px 22px rgba(20, 20, 20, 0.07);
  }

  .landing-phone-real-frame {
    top: 295px;
    right: auto;
    left: clamp(584px, calc(27.5vw + 144px), 672px);
    width: clamp(208px, calc(2.1875vw + 173px), 215px);
    box-shadow: 0 30px 58px rgba(20, 20, 20, 0.3);
    transform: translateX(-50%) rotate(1.5deg);
  }

  .landing-orbit-one {
    top: 150px;
    right: -140px;
    width: 330px;
    height: 360px;
    opacity: 0.45;
  }

  .landing-orbit-two {
    top: 225px;
    left: -20px;
    width: 210px;
    height: 220px;
    opacity: 0.4;
  }
}

/* Release 011: revisao estrutural da landing em mobile e tablet */
@media (max-width: 980px) {
  body.landing-page.landing-menu-open {
    overflow: hidden;
  }

  .landing-header .landing-nav {
    z-index: 20;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .landing-header .landing-nav > a,
  .landing-nav-mobile-actions > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 58px;
  }

  body.landing-page {
    overflow-x: clip;
  }

  .landing-page main,
  .landing-page section,
  .landing-page article,
  .landing-page nav,
  .landing-page div,
  .landing-page figure,
  .landing-page ul,
  .landing-page ol,
  .landing-page li {
    min-width: 0;
  }

  .landing-container {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .landing-header .landing-header-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
  }

  .landing-header .landing-nav {
    top: 56px;
    right: 12px;
    left: 12px;
    width: auto;
    padding: 10px;
  }

  .landing-nav-mobile-actions {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .landing-nav-mobile-actions .landing-btn {
    width: min(100%, 240px);
    min-width: 0;
    padding-inline: 10px;
    white-space: normal;
    text-align: center;
  }

  .landing-hero {
    padding-top: 26px;
    overflow-x: clip;
  }

  .landing-hero-grid {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .landing-hero-left-column,
  .landing-hero-copy,
  .landing-hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .landing-eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .landing-hero h1,
  .landing-section-heading h2,
  .landing-founder-copy h2,
  .landing-faq-intro h2,
  .landing-final-copy h2 {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .landing-hero-lead,
  .landing-section-heading p,
  .landing-founder-copy > p,
  .landing-faq-intro > p,
  .landing-resource-card p,
  .landing-step p,
  .landing-testimonial p,
  .landing-footer p,
  .landing-footer a {
    overflow-wrap: anywhere;
  }

  .landing-hero-actions,
  .landing-hero-actions .landing-btn {
    width: 100%;
    min-width: 0;
  }

  .landing-hero-visual {
    align-items: center;
    margin-top: 20px;
    overflow: visible;
  }

  .landing-dashboard-real-card,
  .landing-dashboard-real-card img,
  .landing-phone-real-frame,
  .landing-phone-real-frame img {
    max-width: 100%;
  }

  .landing-orbit {
    display: none;
  }

  .landing-segments {
    width: 100%;
    max-width: 100%;
    padding: 28px 0 42px;
    overflow: visible;
  }

  .landing-hero-left-column > .landing-segments > .landing-container {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .landing-segments-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
  }

  .landing-segments-grid > div {
    min-width: 0;
    padding-inline: 2px;
  }

  .landing-segments-grid svg {
    width: 26px;
    height: 26px;
  }

  .landing-segments-grid span {
    max-width: 100%;
    font-size: 0.64rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .landing-section {
    padding-block: 52px;
    overflow-x: clip;
  }

  .landing-section-heading {
    margin-bottom: 26px;
  }

  .landing-section-heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.08;
  }

  .landing-resource-grid,
  .landing-steps,
  .landing-testimonial-grid {
    width: 100%;
    max-width: 100%;
  }

  .landing-resource-card,
  .landing-step,
  .landing-testimonial {
    width: 100%;
    max-width: 100%;
  }

  .landing-resource-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 18px;
  }

  .landing-step {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px 18px 22px 24px;
  }

  .landing-step-number {
    left: -10px;
  }

  .landing-founder,
  .landing-faq,
  .landing-final-cta {
    overflow-x: clip;
  }

  .landing-founder-decoration,
  .landing-faq-decoration,
  .landing-final-decoration {
    max-width: 100vw;
    pointer-events: none;
  }

  .landing-founder-grid,
  .landing-faq-layout,
  .landing-final-card,
  .landing-footer-card {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .landing-founder-copy,
  .landing-founder-offer-column,
  .landing-price-card,
  .landing-price-body,
  .landing-founder-pricing,
  .landing-founder-priority {
    width: 100%;
    max-width: 100%;
  }

  .landing-founder-benefit,
  .landing-founder-guarantee,
  .landing-founder-launch {
    min-width: 0;
  }

  .landing-founder-benefit h4,
  .landing-founder-benefit p,
  .landing-founder-guarantee span,
  .landing-founder-launch p {
    overflow-wrap: anywhere;
  }

  .landing-founder-progress {
    width: 100%;
  }

  .landing-founder-progress-track > strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .landing-founder-current-price > strong,
  .landing-founder-future-price > strong {
    flex-wrap: wrap;
  }

  .landing-testimonial {
    align-items: start;
  }

  .landing-faq-list,
  .landing-faq-list details {
    width: 100%;
    max-width: 100%;
  }

  .landing-faq-list summary {
    min-height: 64px;
  }

  .landing-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .landing-final-actions .landing-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .landing-footer {
    overflow-x: clip;
  }

  .landing-footer .landing-footer-column a {
    min-height: 44px;
    align-content: center;
  }

  .landing-footer .landing-footer-bottom {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .landing-header .landing-brand img {
    width: min(124px, calc(100vw - 174px));
  }

  .landing-segments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .landing-segments-grid span {
    font-size: 0.69rem;
  }

  .landing-founder-benefit-grid {
    gap: 10px;
  }

  .landing-founder-benefit {
    padding: 15px 14px;
  }

  .landing-founder-progress {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .landing-slots strong::before,
  .landing-slots strong::after {
    display: none;
  }

  .landing-price-notes {
    justify-content: flex-start;
  }

  .landing-faq-list summary {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
  }

  .landing-faq-list details p {
    margin-left: 52px;
  }

  .landing-footer .landing-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 30px 22px;
  }

  .landing-footer .landing-footer-grid > *,
  .landing-footer .landing-footer-grid > :nth-child(even) {
    padding: 0;
    border: 0;
  }

  .landing-footer .landing-footer-brand,
  .landing-footer .landing-footer-contact {
    grid-column: 1 / -1;
  }

  .landing-footer .landing-footer-column {
    gap: 8px;
  }

  .landing-footer .landing-footer-column a {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.82rem;
  }

  .landing-footer .landing-footer-column a svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .landing-nav-mobile-actions {
    grid-template-columns: 1fr;
  }

  .landing-hero h1 {
    font-size: clamp(1.92rem, 10.2vw, 2.15rem);
  }

  .landing-eyebrow {
    font-size: 0.66rem;
  }

  .landing-footer .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-footer .landing-footer-brand,
  .landing-footer .landing-footer-contact {
    grid-column: auto;
  }
}

/* Release 003: oferta de loja fundadora fiel à referência aprovada */
@media (max-width: 1100px) {
  .landing-founder-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
    width: min(calc(100% - 48px), 820px);
  }

  .landing-founder-copy,
  .landing-founder-copy h2,
  .landing-founder-copy > p {
    max-width: none;
  }

  .landing-founder-launch {
    margin-top: 40px;
  }

  .landing-price-card {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 700px) {
  .landing-founder {
    padding: 54px 0 48px;
  }

  .landing-founder-grid {
    width: min(calc(100% - 28px), 650px);
    gap: 36px;
  }

  .landing-founder-copy h2 {
    margin-top: 23px;
    font-size: clamp(2.15rem, 10.4vw, 3rem);
  }

  .landing-founder-copy > p {
    font-size: 0.91rem;
  }

  .landing-founder-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .landing-founder-benefit {
    min-height: 145px;
    height: auto;
  }

  .landing-founder-launch {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    margin: 30px 0 0;
    padding: 19px 17px;
  }

  .landing-founder-launch-icon {
    width: 64px;
    height: 64px;
  }

  .landing-founder-launch-icon svg {
    width: 32px;
    height: 32px;
  }

  .landing-founder-launch h3 {
    font-size: 1rem;
  }

  .landing-founder-launch p {
    font-size: 0.72rem;
  }

  .landing-price-card {
    padding: 0;
  }

  .landing-price-header {
    height: 62px;
    gap: 9px;
    padding-left: 58px;
  }

  .landing-price-header > strong {
    font-size: 1.18rem;
  }

  .landing-price-header > svg {
    width: 19px;
    height: 19px;
  }

  .landing-founder-medal {
    top: -15px;
    left: 12px;
    width: 71px;
    height: 71px;
    border-width: 5px;
  }

  .landing-founder-medal svg {
    width: 29px;
    height: 29px;
  }

  .landing-price-body {
    padding: 24px 16px 20px;
  }

  .landing-slots strong span {
    width: 60px;
    height: 73px;
    font-size: 3.15rem;
  }

  .landing-slots small:last-child {
    font-size: 0.9rem;
  }

  .landing-founder-progress {
    grid-template-columns: minmax(0, 1fr) 50px;
    margin-inline: 0;
  }

  .landing-founder-progress-track > strong {
    padding-inline: 11px;
    font-size: 0.63rem;
  }

  .landing-founder-progress-track svg {
    display: none;
  }

  .landing-founder-pricing {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0 18px;
  }

  .landing-founder-saving::before,
  .landing-founder-saving::after {
    display: none;
  }

  .landing-founder-future-price,
  .landing-founder-current-price {
    width: 100%;
  }

  .landing-founder-guarantee {
    justify-content: flex-start;
    padding: 14px;
  }

  .landing-founder-guarantee span br {
    display: none;
  }

  .landing-price-cta {
    min-height: 56px;
    font-size: 0.93rem;
  }

  .landing-price-notes {
    gap: 10px 20px;
    font-size: 0.68rem;
  }

  .landing-founder-priority > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .landing-founder-priority span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .landing-founder-grid {
    width: min(calc(100% - 22px), 430px);
  }

  .landing-founder .landing-offer-label {
    max-width: 100%;
    padding-inline: 12px;
    font-size: 0.72rem;
  }

  .landing-founder-benefit-grid {
    grid-template-columns: 1fr;
  }

  .landing-founder-benefit {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
  }

  .landing-founder-benefit > svg {
    margin-bottom: 0;
  }

  .landing-founder-benefit h4 {
    min-height: 0;
  }

  .landing-founder-launch {
    grid-template-columns: 1fr;
  }

  .landing-founder-launch-icon {
    width: 58px;
    height: 58px;
  }

  .landing-price-header {
    padding-left: 62px;
  }

  .landing-price-header > svg {
    display: none;
  }

  .landing-price-header > strong {
    font-size: 1rem;
  }

  .landing-founder-progress-track > strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .landing-founder-guarantee > svg {
    flex: 0 0 auto;
  }

  .landing-price-notes {
    align-items: center;
    flex-direction: row;
  }
}

@media (min-width: 1360px) and (max-width: 1599px) {
  .landing-hero-visual {
    margin-top: 65px;
  }

  .landing-dashboard-real-card {
    top: 42px;
    right: -45px;
    width: min(850px, calc(100vw - 570px));
    box-shadow: 0 28px 72px rgba(20, 20, 20, 0.18), 0 8px 22px rgba(20, 20, 20, 0.07);
  }

  .landing-phone-real-frame {
    top: 285px;
    right: auto;
    left: 66.5%;
    width: clamp(185px, 13.55vw, 195px);
    box-shadow: 0 28px 54px rgba(20, 20, 20, 0.3);
    transform: translateX(-50%) rotate(1.5deg);
  }

  .landing-orbit-one {
    top: 150px;
    right: -45px;
    width: 280px;
    height: 310px;
    opacity: 0.45;
  }

  .landing-orbit-two {
    top: 210px;
    left: -35px;
    width: 180px;
    height: 205px;
    opacity: 0.42;
  }
}

@media (min-width: 701px) and (max-width: 1359px) {
  .landing-phone-real-frame {
    right: auto;
    left: 60%;
    transform: translateX(-50%) rotate(1.5deg);
  }
}

/* Mascote oficial e ambientação tecnológica da primeira dobra */
.landing-mascot-official {
  display: none;
  margin: 0;
}

@media (min-width: 1360px) {
  .landing-hero {
    isolation: isolate;
    overflow-x: clip;
  }

  .landing-hero::before {
    position: absolute;
    right: -90px;
    bottom: -650px;
    z-index: 0;
    width: min(66vw, 1200px);
    height: 770px;
    border-radius: 62% 38% 0 0 / 58% 46% 0 0;
    background:
      radial-gradient(ellipse at 84% 74%, rgba(255, 98, 0, 0.32) 0, rgba(255, 151, 87, 0.18) 34%, transparent 68%),
      radial-gradient(ellipse at 48% 100%, rgba(255, 98, 0, 0.11), transparent 62%);
    content: "";
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, rgba(0, 0, 0, 0.72) 69%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 52%, rgba(0, 0, 0, 0.72) 69%, transparent 100%);
  }

  .landing-hero::after {
    position: absolute;
    bottom: 80px;
    left: -190px;
    z-index: 0;
    width: 560px;
    height: 390px;
    border-radius: 45% 55% 50% 0;
    background: radial-gradient(ellipse at 30% 55%, rgba(255, 98, 0, 0.08), transparent 69%);
    content: "";
    pointer-events: none;
  }

  .landing-hero-grid {
    z-index: 1;
  }

  .landing-resources {
    position: relative;
    isolation: isolate;
    overflow: clip;
    border-top: 0;
    background: transparent;
  }

  .landing-resources::before {
    position: absolute;
    top: -260px;
    right: -120px;
    z-index: 0;
    width: min(70vw, 1260px);
    height: 720px;
    background: repeating-radial-gradient(ellipse at 76% 0%, transparent 0 14px, rgba(255, 98, 0, 0.075) 15px 16px, transparent 17px 30px);
    content: "";
    opacity: 0.48;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 48%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 48%, transparent 100%);
  }

  .landing-resources > .landing-container {
    position: relative;
    z-index: 1;
  }

  .landing-hero-visual::before {
    position: absolute;
    right: -230px;
    bottom: -520px;
    z-index: 0;
    width: 1100px;
    height: 460px;
    background: repeating-radial-gradient(ellipse at 72% 100%, transparent 0 14px, rgba(255, 98, 0, 0.12) 15px 16px, transparent 17px 29px);
    content: "";
    opacity: 0.68;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top right, #000 10%, transparent 72%);
    mask-image: linear-gradient(to top right, #000 10%, transparent 72%);
  }

  .landing-orbit-one {
    top: -58px;
    right: -72px;
    width: 175px;
    height: 108px;
    border-radius: 0;
    background: radial-gradient(circle, rgba(255, 98, 0, 0.24) 1.25px, transparent 1.65px);
    background-size: 19px 19px;
    filter: none;
    opacity: 0.78;
  }

  .landing-orbit-two {
    top: auto;
    right: 0;
    bottom: -409px;
    left: auto;
    width: 260px;
    height: 170px;
    border-radius: 0;
    background: radial-gradient(circle, rgba(255, 98, 0, 0.2) 1.2px, transparent 1.65px);
    background-size: 18px 18px;
    filter: none;
    opacity: 0.72;
  }

  .landing-phone-real-frame {
    top: 365px;
  }

  .landing-mascot-official {
    position: absolute;
    top: 250px;
    right: -55px;
    z-index: 2;
    display: block;
    width: 300px;
    filter: drop-shadow(0 23px 22px rgba(69, 31, 7, 0.18));
    pointer-events: none;
  }

  .landing-mascot-official::before {
    position: absolute;
    top: -140px;
    right: -40px;
    z-index: -1;
    width: 560px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 64% 52%, rgba(255, 98, 0, 0.17), rgba(255, 98, 0, 0.05) 55%, transparent 74%);
    content: "";
    filter: blur(5px);
  }

  .landing-mascot-official::after {
    position: absolute;
    top: -34px;
    left: 50%;
    width: 60px;
    height: 48px;
    background:
      linear-gradient(68deg, transparent 44%, var(--landing-orange) 45% 55%, transparent 56%) 0 22px / 24px 10px no-repeat,
      linear-gradient(88deg, transparent 44%, var(--landing-orange) 45% 55%, transparent 56%) 20px 4px / 24px 24px no-repeat,
      linear-gradient(112deg, transparent 44%, var(--landing-orange) 45% 55%, transparent 56%) 42px 18px / 22px 14px no-repeat;
    content: "";
    opacity: 0.72;
    transform: rotate(-4deg);
  }

  .landing-mascot-official img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
  }
}

/* Release 016: rodapé completo conforme referência aprovada */
.landing-footer {
  padding: 44px 0 32px;
  border-top: 0;
  background: #fff;
}

.landing-footer-card {
  width: min(calc(100% - 64px), 1460px);
  max-width: 1460px;
  overflow: hidden;
  border: 1px solid #e0e3e7;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(19, 31, 45, 0.08);
}

.landing-footer .landing-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.18fr;
  gap: 0;
  padding: 34px 42px 26px;
}

.landing-footer .landing-footer-grid > * {
  min-width: 0;
  padding: 0 38px;
}

.landing-footer .landing-footer-grid > :first-child {
  padding-left: 0;
}

.landing-footer .landing-footer-grid > :last-child {
  padding-right: 0;
}

.landing-footer .landing-footer-grid > * + * {
  border-left: 1px solid #e1e4e8;
}

.landing-footer .landing-footer-brand p {
  max-width: 340px;
  margin: 0 0 15px;
  color: #4d5867;
  font-size: 0.92rem;
  line-height: 1.55;
}

.landing-footer-highlights {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-footer-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5867;
  font-size: 0.9rem;
}

.landing-footer-highlights svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--landing-orange);
  stroke-width: 1.7;
}

.landing-footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.landing-footer-social {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

a.landing-footer-social {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.landing-footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 30, 45, 0.1);
}

.landing-footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.landing-footer-social .landing-footer-social-dot {
  fill: currentColor;
  stroke: none;
}

.landing-footer .landing-footer-social-instagram {
  color: #f02d4c;
}

.landing-footer .landing-footer-social-whatsapp {
  color: #18ad52;
}

.landing-footer .landing-footer-social-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.landing-footer .landing-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
}

.landing-footer .landing-footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.landing-footer .landing-footer-column strong {
  margin: 3px 0 -9px;
  color: #111b29;
  font-size: 1.18rem;
  font-weight: 800;
}

.landing-footer-title-line {
  width: 30px;
  height: 2px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: var(--landing-orange);
}

.landing-footer .landing-footer-column a {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  color: #17202d;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.landing-footer .landing-footer-column a:hover {
  color: var(--landing-orange);
  transform: translateX(2px);
}

.landing-footer .landing-footer-column a svg {
  width: 23px;
  height: 23px;
  color: var(--landing-orange);
  stroke-width: 1.8;
}

.landing-footer .landing-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 42px;
  border-top: 1px solid #e1e4e8;
  color: #465363;
  font-size: 0.86rem;
}

.landing-footer .landing-footer-bottom p {
  margin: 0;
}

.landing-footer .landing-footer-bottom p:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #17202d;
}

.landing-footer-br-flag {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 17px;
  overflow: hidden;
  border-radius: 1px;
  background: #168447;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.landing-footer-br-flag::before {
  position: absolute;
  inset: 3px 5px;
  background: #ffdf35;
  content: "";
  transform: rotate(45deg);
}

.landing-footer-br-flag::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2456a4;
  content: "";
}

@media (max-width: 1180px) {
  .landing-footer .landing-footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    padding-inline: 34px;
  }

  .landing-footer .landing-footer-grid > * {
    padding-inline: 28px;
  }

  .landing-footer .landing-footer-column a {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .landing-footer {
    padding-top: 64px;
  }

  .landing-footer-card {
    width: min(calc(100% - 32px), 760px);
  }

  .landing-footer .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 42px;
    padding: 40px 34px;
  }

  .landing-footer .landing-footer-grid > * {
    padding: 0 28px;
  }

  .landing-footer .landing-footer-grid > :nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .landing-footer .landing-footer-grid > :nth-child(even) {
    padding-right: 0;
    border-left: 1px solid #e1e4e8;
  }
}

@media (max-width: 600px) {
  .landing-footer {
    padding: 42px 0 28px;
  }

  .landing-footer-card {
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .landing-footer .landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 24px;
  }

  .landing-footer .landing-footer-grid > *,
  .landing-footer .landing-footer-grid > :nth-child(even) {
    padding: 0 0 30px;
    border-bottom: 1px solid #e1e4e8;
    border-left: 0;
  }

  .landing-footer .landing-footer-grid > :last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .landing-footer .landing-footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px;
    text-align: center;
  }
}

/* Release 020: navegação centralizada no eixo real da topbar */
@media (min-width: 981px) {
  .landing-header .landing-header-inner {
    position: relative;
  }

  .landing-header .landing-brand img {
    width: 148px;
  }

  .landing-header .landing-nav {
    position: absolute;
    left: 50%;
    justify-content: center;
    gap: clamp(28px, 3vw, 52px);
    padding-left: 0;
    transform: translateX(-50%);
  }

  .landing-header .landing-header-actions {
    grid-column: 3;
    justify-self: end;
  }
}

/* Release 023: segmentos alinhados ao conteúdo da coluna esquerda */
@media (min-width: 1360px) {
  .landing-hero-left-column > .landing-segments > .landing-container {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-right: 0;
    margin-left: 60px;
  }
}

@media (min-width: 1360px) and (max-width: 1599px) {
  .landing-dashboard-real-card {
    top: 51px;
    right: 82px;
  }

  .landing-mascot-official {
    top: 212px;
    right: -96px;
    width: 350px;
  }

  .landing-phone-real-frame {
    top: 291px;
    right: auto;
    left: 212px;
    width: 180px;
    transform: rotate(1.5deg);
  }
}

@media (min-width: 1600px) {
  .landing-hero-visual {
    margin-top: clamp(76px, calc(23.6svh - 153px), 102px);
  }

  .landing-dashboard-real-card {
    top: clamp(58px, calc(136.5px - 7.3svh), 66px);
    right: -32px;
    width: 1080px;
  }

  .landing-phone-real-frame {
    top: clamp(349px, calc(23.6svh + 123px), 378px);
    right: auto;
    left: 305px;
    width: clamp(220px, calc(25.3svh - 15.4px), 240px);
    transform: rotate(1.5deg);
  }

  .landing-mascot-official {
    top: clamp(263px, calc(8.2svh + 184.5px), 273px);
    right: clamp(-336px, calc(-28.2svh - 31.4px), -301px);
    width: clamp(430px, calc(46svh - 28.1px), 470px);
  }
}

/* Release 011: overrides mobile carregados por ultimo */
@media (max-width: 700px) {
  .landing-founder-grid,
  .landing-faq-layout,
  .landing-final-card,
  .landing-footer-card {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .landing-founder,
  .landing-faq,
  .landing-final-cta,
  .landing-footer {
    overflow-x: clip;
  }

  .landing-footer .landing-footer-column a {
    min-height: 44px;
    align-content: center;
  }
}

@media (max-width: 480px) {
  .landing-footer .landing-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 30px 22px;
  }

  .landing-footer .landing-footer-grid > *,
  .landing-footer .landing-footer-grid > :nth-child(even) {
    padding: 0;
    border: 0;
  }

  .landing-footer .landing-footer-brand,
  .landing-footer .landing-footer-contact {
    grid-column: 1 / -1;
  }

  .landing-footer .landing-footer-column {
    gap: 8px;
  }

  .landing-footer .landing-footer-column a {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.82rem;
  }

  .landing-footer .landing-footer-column a svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 360px) {
  .landing-footer .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-footer .landing-footer-brand,
  .landing-footer .landing-footer-contact {
    grid-column: auto;
  }
}

/* Release 012: alinhamento central do conteudo textual do hero no mobile */
@media (max-width: 700px) {
  .landing-hero-copy {
    text-align: center;
  }

  .landing-hero-copy .landing-eyebrow {
    margin-inline: auto;
    justify-content: center;
  }

  .landing-hero h1,
  .landing-hero-lead {
    margin-inline: auto;
  }

  .landing-inline-benefits {
    justify-items: center;
  }

  .landing-inline-benefits li {
    justify-content: center;
    text-align: center;
  }
}

/* Release 013: alinhamento central da apresentacao da oferta no mobile */
@media (max-width: 700px) {
  .landing-founder-copy {
    text-align: center;
  }

  .landing-founder .landing-offer-label,
  .landing-founder-copy h2,
  .landing-founder-copy > p {
    margin-inline: auto;
  }

  .landing-founder .landing-offer-label,
  .landing-founder-reasons h3 {
    justify-content: center;
  }

  .landing-founder-reasons h3 {
    text-align: center;
  }

  .landing-founder-benefit,
  .landing-founder-launch {
    text-align: left;
  }
}

/* Release 014: card de lancamento compacto e equilibrado no mobile */
@media (max-width: 480px) {
  .landing-founder-launch {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 0;
    margin-top: 24px;
    padding: 17px 16px;
    border-radius: 16px;
  }

  .landing-founder-launch-icon {
    width: 52px;
    height: 52px;
  }

  .landing-founder-launch-icon svg {
    width: 27px;
    height: 27px;
  }

  .landing-founder-launch h3 {
    gap: 0;
    margin-bottom: 6px;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .landing-founder-launch h3 svg {
    display: none;
  }

  .landing-founder-launch p {
    font-size: 0.74rem;
    line-height: 1.45;
  }
}

/* Release 015: CTA final reorganizado para telas estreitas */
@media (max-width: 480px) {
  .landing-final-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 26px 20px 0;
    overflow: hidden;
  }

  .landing-final-card .landing-final-symbol {
    width: 76px;
    height: 76px;
    margin-inline: auto;
    border-radius: 22px;
  }

  .landing-final-card .landing-final-symbol img {
    width: 58px;
    height: 58px;
  }

  .landing-final-copy {
    text-align: center;
  }

  .landing-final-copy h2 {
    margin-inline: auto;
    font-size: clamp(1.55rem, 7.5vw, 1.8rem);
  }

  .landing-final-copy > p {
    margin-bottom: 16px;
    font-size: 0.9rem;
  }

  .landing-final-actions .landing-btn {
    justify-content: center;
  }

  .landing-final-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .landing-final-benefits li {
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .landing-final-benefits svg {
    width: 21px;
    height: 21px;
  }

  .landing-final-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: 170px;
    height: 185px;
    margin: 0 auto;
  }

  .landing-final-mascot img {
    top: 0;
    right: auto;
    left: 50%;
    width: 155px;
    transform: translateX(-50%);
  }
}

/* Release 016: titulos centralizados verticalmente com os icones */
@media (max-width: 480px) {
  .landing-founder-benefit > svg,
  .landing-founder-benefit h4 {
    align-self: center;
  }

  .landing-founder-benefit h4 {
    margin-top: 0;
  }
}
