* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  font-family: Georgia, serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% 80%, rgba(101, 53, 26, 0.18) 0%, rgba(38, 20, 13, 0.16) 22%, rgba(10, 7, 6, 0) 44%),
    radial-gradient(circle at 32% 34%, rgba(118, 65, 35, 0.10) 0%, rgba(12, 9, 8, 0) 32%),
    linear-gradient(180deg, #050505 0%, #080605 32%, #0a0706 100%);
  background-color: #050505;
}

body:not(.inner-body) {
  overflow: hidden;
}

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page > img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  position: absolute;
  top: 34px;
  display: flex;
  gap: 34px;
  z-index: 30;
}

.page:not(.inner-page) > .nav {
  right: max(28px, calc((100vw - min(100vw, 1350px)) / 2 + 24px));
}

.inner-page > .nav {
  top: 28px;
  right: max(34px, calc((100vw - min(100vw, 1536px)) / 2 + 72px));
}

.nav a {
  text-decoration: none;
  padding: 0;
  color: rgba(229,224,216,0.65);
  font-family: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.1px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 0.25s ease, text-shadow 0.25s ease, opacity 0.25s ease;
  text-shadow: none;
}

.nav a:hover {
  color: rgba(245, 232, 210, 0.94);
  text-shadow: none;
}


.page:not(.inner-page) > .nav a {
  color: rgba(229,224,216,0.65);
  text-shadow: none;
}

.page:not(.inner-page) > .nav a:hover {
  color: rgba(236, 216, 188, 0.78);
  text-shadow: none;
}

.hero-wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: -25px auto 0;
  z-index: 10;
}

.hero-wrap > img:first-child {
  width: 100%;
  height: auto;
  display: block;
}

.inner-page > img {
  width: auto;
  height: 100vh;
  max-width: 100vw;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.hero-send-file-cta {
  position: absolute;
  left: 40%;
  top: 58.7%;
  transform: translateX(-50%) translateY(10px);
  display: inline-flex;
  align-items: center;
  gap: 34px;
  text-decoration: none;
  white-space: nowrap;
  z-index: 19;
  cursor: pointer;
  opacity: 0;
  animation: heroSendFileReveal 1.9s ease forwards;
  animation-delay: 0.7s;
}

.hero-send-file-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1;
  color: rgba(196, 174, 148, 0.58);
  text-shadow: none;
  transition: color 0.28s ease, text-shadow 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.hero-send-file-cursor {
  display: inline-block;
  width: 1px;
  height: 23px;
  background: rgba(196, 174, 148, 0.52);
  box-shadow: none;
  animation: heroSendFileCursorBlink 1.7s step-end infinite;
  transition: background 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.hero-send-file-cta:hover .hero-send-file-text,
.hero-send-file-cta:focus-visible .hero-send-file-text {
  color: rgba(221, 200, 173, 0.78);
  text-shadow: none;
  transform: translateY(-1px);
}

.hero-send-file-cta:hover .hero-send-file-cursor,
.hero-send-file-cta:focus-visible .hero-send-file-cursor {
  background: rgba(221, 200, 173, 0.72);
  box-shadow: none;
}

@keyframes heroSendFileReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroSendFileCursorBlink {
  0%, 42%, 100% {
    opacity: 0;
  }
  50%, 92% {
    opacity: 0.95;
  }
}

.btn-main {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  color: #e6c28f;
  text-shadow: none;
}

.btn-sub {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  color: #e6c28f;
  text-shadow: none;
}



.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  
  border-top: 1px solid rgba(229,224,216,0.18);
  overflow: hidden;
  box-shadow: none;
  z-index: 40;
}

.ticker-track {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: ticker 121.5s linear infinite;
  font-family: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3.6px;
  font-variant: small-caps;
  line-height: 1.05;
  text-transform: uppercase;
  color: rgba(229, 224, 216, 0.72) !important;
  text-shadow: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.cowboy-launcher {
  position: fixed;
  right: -120px;
  bottom: 220px;
  z-index: 9999;

  z-index: 10;
}

.cowboy-link {
  display: block;
  cursor: pointer;

  z-index: 10;
}

.cowboy-img {
  width: 450px;
  height: auto;
  display: block;
  pointer-events: none;
  animation: cowboyFloat 3s ease-in-out infinite;
  transform: translateX(-280px);

  z-index: 10;
}

@keyframes cowboyFloat {
  0% { transform: translateX(-280px) translateY(0); }
  50% { transform: translateX(-280px) translateY(-8px); }
  100% { transform: translateX(-280px) translateY(0); }
}

.seo-about-text {
  position: absolute;
  left: 6%;
  top: 18%;
  max-width: 1280px;
  color: #f6ead0;
  z-index: 15;
  
  padding: 36px 34px;
  border-radius: 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.seo-about-text h1,
.seo-about-text h2 {
  margin-bottom: 12px;
}

.seo-about-text p,
.seo-about-text li {
  line-height: 1.5;
  margin-bottom: 10px;
}

.seo-about-text ul {
  padding-left: 20px;
}

@media (max-width: 900px) {
  .page:not(.inner-page) > .nav {
    top: 22px;
    right: 18px;
    gap: 34px;
  }

  .inner-page > .nav {
    top: 20px;
    right: 20px;
    gap: 34px;
  }

  .cowboy-img {
    width: 320px;
    transform: translateX(-150px);
  
  z-index: 10;
}

  @keyframes cowboyFloat {
    0% { transform: translateX(-150px) translateY(0); }
    50% { transform: translateX(-150px) translateY(-8px); }
    100% { transform: translateX(-150px) translateY(0); }
  }
}

.seo-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inner-cowboy-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: 900px;
  height: 420px;
  z-index: 60;
  pointer-events: none;
}

.inner-send-file-hitbox,
.inner-send-file-button,
.inner-cowboy-launcher {
  pointer-events: auto;
}

.inner-send-file-button {
  position: absolute;
  left: 50%;
  transform: translateX(-132%);
  bottom: 92px;
  width: 320px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 3;
  opacity: 0.96;
}

.inner-send-file-hitbox {
  position: absolute;
  left: 50%;
  transform: translateX(-132%);
  bottom: 92px;
  width: 320px;
  height: 96px;
  z-index: 4;
}

.inner-send-file-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-118%);
  bottom: 190px;
  width: 32px;
  height: 42px;
  z-index: 1;
  pointer-events: none;
}

.inner-cowboy-launcher {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
}

.inner-cowboy-launcher .cowboy-img {
  width: 165px;
  transform: translateX(0);
  animation: none;
}

@keyframes innerCowboyFloat {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(0) translateY(-8px); }
  100% { transform: translateX(0) translateY(0); }
}

@media (max-width: 900px) {
  .page:not(.inner-page) > .nav {
    right: 20px;
  }

  .inner-page > .nav {
    right: 22px;
  }

  .nav a {
    font-size: 16px;
  }

  .hero-send-file-text {
    font-size: 22px;
  }

  .hero-send-file-cursor {
    height: 19px;
  }


  .inner-cowboy-cta {
    width: 520px;
    height: 360px;
    bottom: 10px;
  }

  .inner-send-file-button,
  .inner-send-file-hitbox {
    width: 220px;
    height: 64px;
    bottom: 62px;
    transform: translateX(-60%);
  }

  .inner-cowboy-launcher .cowboy-img {
    width: 210px;
    transform: translateX(64px);
  }

  .inner-send-file-dots {
    bottom: 128px;
  }
}


.inner-send-file-button .btn-main {
  font-size: 17px;
  color: rgba(244, 234, 214, 0.98);
  text-shadow: none;
}

.inner-send-file-button .btn-sub {
  font-size: 10px;
  color: rgba(244, 234, 214, 0.92);
  text-shadow: none;
}


/* INNER PAGE REPAIR */
body.inner-body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 52% 82%, rgba(103, 54, 27, 0.22) 0%, rgba(43, 24, 16, 0.18) 20%, rgba(9, 9, 9, 0) 42%),
    radial-gradient(circle at 34% 34%, rgba(112, 59, 31, 0.10) 0%, rgba(11, 10, 9, 0) 30%),
    linear-gradient(180deg, #050505 0%, #080605 38%, #090706 100%);
  background-color: #050505;
}

body.inner-body .page.inner-page {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: block;
  position: relative;
  padding: 28px 24px 320px;
}

body.inner-body .nav {
  position: relative;
  top: 0;
  right: 0;
  justify-content: flex-end;
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto 28px;
  gap: 34px;
}

body.inner-body .nav a {
  color: rgba(229,224,216,0.65);
  font-size: 19px;
}

.inner-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.inner-brand {
  display: flex;
  justify-content: center;
  margin: 10px auto 16px;
}

.inner-brand img {
  width: min(420px, 64vw);
  height: auto;
  display: block;
  background: transparent;
  filter: none;
}

.inner-head {
  text-align: center;
  margin-bottom: 34px;
}

.inner-kicker {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(203, 171, 121, 0.92);
}

.inner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.95;
  color: rgba(239, 226, 202, 0.97);
  margin: 10px 0 12px;
  text-shadow: none;
}

.inner-rule {
  width: min(390px, 72vw);
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(182,136,79,0.9), rgba(0,0,0,0));
}

.inner-subtitle {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(230, 220, 204, 0.88);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.panel-grid.single {
  grid-template-columns: 1fr;
}

.panel-card {
  background:
    linear-gradient(180deg, rgba(58, 39, 27, 0.42) 0%, rgba(24, 17, 13, 0.74) 18%, rgba(10, 9, 8, 0.86) 100%),
    radial-gradient(circle at top left, rgba(255, 219, 170, 0.06) 0%, rgba(255, 219, 170, 0) 38%);
  border: 1px solid rgba(182, 133, 81, 0.44);
  border-radius: 24px;
  padding: 28px 28px 26px;
  box-shadow: none;
  backdrop-filter: none;
}

.panel-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 166, 112, 0.96);
  margin-bottom: 10px;
}

.panel-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 0.98;
  margin-bottom: 16px;
  color: rgba(244, 235, 220, 0.96);
}

.panel-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.02;
  margin-bottom: 14px;
  color: rgba(244, 235, 220, 0.96);
}

.panel-card p,
.panel-card li {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(234, 224, 208, 0.90);
}

.panel-card p + p {
  margin-top: 16px;
}

.panel-card ul {
  margin: 10px 0 0 22px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 34px;
  justify-content: center;
  align-items: start;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;

}


.step-card {
  min-height: 240px;
  min-height: 250px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 28px 26px;
}


.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: rgba(201, 166, 112, 0.96);
  margin-bottom: 8px;
}

.price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.9;
  color: rgba(241, 226, 196, 0.98);
  margin-bottom: 16px;
}

.note-list li + li { margin-top: 10px; }

body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

body.inner-body .inner-send-file-button {
  position: absolute;
  left: 22px;
  bottom: 78px;
  transform: none;
  width: 172px;
  height: 58px;
  align-items: flex-start;
  text-align: left;
}


body.inner-body .inner-send-file-hitbox {
  position: absolute;
  left: 22px;
  bottom: 78px;
  transform: none;
  width: 172px;
  height: 58px;
}


body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}


body.inner-body .inner-cowboy-launcher{
position:absolute;
right:0;
bottom:0;
transform:none;
}


@media (max-width: 1100px) {
  .panel-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}
}

@media (max-width: 820px) {
  body.inner-body .page.inner-page {
    padding: 22px 16px 230px;
  }
  body.inner-body .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
    margin-bottom: 24px;
  }
  body.inner-body .nav a {
    font-size: 16px;
  }
  .panel-card {
    padding: 24px 20px 22px;
    border-radius: 18px;
  }
  .panel-card p,
  .panel-card li,
  .inner-subtitle {
    font-size: 18px;
  }
  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}
}


/* FINAL INNER PAGE POSITION FIX */
body.inner-body .page.inner-page {
  padding: 28px 24px 340px;
}

body.inner-body .inner-shell {
  width: min(1100px, 100%);
}

body.inner-body .inner-brand {
  margin: 14px auto 18px;
}

body.inner-body .inner-brand img {
  width: min(460px, 70vw);
}

body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

body.inner-body .inner-cowboy-launcher{
position:absolute;
right:0;
bottom:0;
transform:none;
}

body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}


body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

body.inner-body .inner-send-file-button {
  padding-top: 4px;
}

body.inner-body .inner-send-file-button .btn-main {
  font-size: 18px;
}

body.inner-body .inner-send-file-button .btn-sub {
  font-size: 9px;
}

body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}

@keyframes innerCowboyFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@media (max-width: 820px) {
  body.inner-body .page.inner-page {
    padding: 22px 16px 250px;
  }

  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

  body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

  body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

  body.inner-body .inner-send-file-button .btn-main {
    font-size: 16px;
  }

  body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}
}


/* FINAL LOCKED INNER PAGE OVERRIDES */
body.inner-body .inner-kicker {
  display: none;
}

body.inner-body .inner-subtitle {
  font-size: 20px;
  line-height: 1.4;
}

body.inner-body .inner-brand img {
  width: min(440px, 68vw);
  background: transparent;
  filter: none;
}

body.inner-body .page.inner-page {
  padding-bottom: 360px;
}

body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

body.inner-body .inner-send-file-button .btn-main {
  font-size: 19px;
}

body.inner-body .inner-send-file-button .btn-sub {
  font-size: 9px;
}

body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}

body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

@media (max-width: 820px) {
  body.inner-body .page.inner-page {
    padding-bottom: 270px;
  }

  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

  body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

  body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}

  body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}
}


/* LOCKED FINAL INNER PAGE CLEANUP */
body.inner-body {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 214, 156, 0.06) 0%, rgba(255, 214, 156, 0) 26%),
    radial-gradient(circle at 50% 100%, rgba(121, 66, 34, 0.24) 0%, rgba(42, 23, 15, 0.14) 22%, rgba(0, 0, 0, 0) 48%),
    linear-gradient(180deg, #030303 0%, #090706 36%, #0d0908 100%);
  background-attachment: fixed;
}

body.inner-body .page.inner-page {
  min-height: 100vh;
  height: auto;
  padding: 28px 24px 320px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

body.inner-body .inner-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}

body.inner-body .inner-brand {
  margin: 8px auto 18px;
}

body.inner-body .inner-brand img {
  width: min(520px, 72vw);
  display: block;
  background: transparent !important;
  box-shadow: none;
  outline: none !important;
  border: 0 !important;
  mix-blend-mode: screen;
  filter: none;
}

body.inner-body .panel-card {
  background:
    linear-gradient(180deg, rgba(76, 51, 33, 0.34) 0%, rgba(23, 16, 13, 0.82) 20%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(circle at top center, rgba(255, 227, 179, 0.10) 0%, rgba(255, 227, 179, 0.02) 24%, rgba(255, 227, 179, 0) 54%);
  border: 1px solid rgba(184, 138, 89, 0.42);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-signature-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 38px auto 0;
  padding-bottom: 8px;
}

.page-signature {
  width: min(220px, 34vw);
  height: auto;
  display: block;
  background: transparent !important;
  box-shadow: none;
  outline: none !important;
  border: 0 !important;
  mix-blend-mode: screen;
  filter: none;
}

body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

body.inner-body .inner-cowboy-launcher,
body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

body.inner-body .inner-cowboy-launcher{
position:absolute;
right:0;
bottom:0;
transform:none;
}

body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

body.inner-body .inner-send-file-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  text-align: left;
  text-decoration: none;
  z-index: 3;
}

body.inner-body .inner-send-file-button .btn-main {
  font-size: 19px;
  color: rgba(244, 234, 214, 0.98);
  text-shadow: none;
}

body.inner-body .inner-send-file-button .btn-sub {
  font-size: 9px;
  color: rgba(244, 234, 214, 0.92);
  text-shadow: none;
}

body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}

@media (max-width: 820px) {
  body.inner-body .page.inner-page {
    padding: 22px 16px 260px;
  }

  body.inner-body .inner-shell {
    width: min(1120px, calc(100vw - 32px));
  }

  body.inner-body .inner-brand img {
    width: min(430px, 78vw);
  }

  .page-signature {
    width: min(180px, 40vw);
  }

  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

  body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

  body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

  body.inner-body .inner-send-file-button .btn-main {
    font-size: 16px;
  }

  body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}
}


/* FINAL CLEAN FIXES */
body.inner-body .inner-brand img {
  width: min(520px, 72vw);
  background: transparent !important;
  box-shadow: none;
  outline: none !important;
  border: 0 !important;
  mix-blend-mode: normal !important;
  filter: none;
}

body.inner-body .panel-card {
  background: rgba(8, 6, 5, 0.82) !important;
  border: 1px solid rgba(184, 138, 89, 0.46) !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.note-list {
  list-style: none;
  margin: 8px 0 0 0 !important;
  padding: 0 !important;
}

.note-list li {
  position: relative;
  padding-left: 34px;
  margin: 0;
}

.note-list li + li {
  margin-top: 12px !important;
}

.note-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(205, 164, 96, 0.98);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.ticker {
  height: 42px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  padding-left: 0 !important;
  animation: tickerFlow 55s linear infinite;
  will-change: transform;
}

.ticker-group {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 42px;
}

@keyframes tickerFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bottom-tagline{position:fixed;left:32px;bottom:18px;color:#cfa75a;font-size:16px;text-align:left;z-index:65;}


/* CORNER LOCK FIX */
body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

body.inner-body .inner-cowboy-launcher{
position:absolute;
right:0;
bottom:0;
transform:none;
}

body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

body.inner-body .inner-send-file-button{
  padding-top:2px;
}

body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}

@media (max-width: 820px){
  .bottom-tagline{
    left:18px;
    bottom:14px;
    font-size:14px;
  }

  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

  body.inner-body .inner-cowboy-launcher .cowboy-img {
  width: 200px;
  height: auto;
  transform: none;
  animation: innerCowboyFloat 3s ease-in-out infinite;
}

  body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

  body.inner-body .inner-send-file-dots {
  position: absolute;
  right: 240px;
  bottom: 92px;
  left: auto;
  transform: none;
}
}


@media (max-width: 820px){
  body.inner-body .inner-cowboy-cta{
position:fixed;
right:0;
bottom:0;
margin:0;
padding:0;
z-index:60;
}

  body.inner-body .inner-cowboy-launcher .cowboy-img {
    width: 160px;
  }

  body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox{
position:absolute;
right: 240px;
bottom: 20px;
left:auto;
transform:none;
}

  body.inner-body .inner-send-file-dots {
    right: 240px;
    bottom: 78px;
  }
}



/* ABOUT PAGE ONLY */
body.about-page .inner-shell {
  width: min(1160px, 100%);
}

body.about-page .inner-head {
  margin-bottom: 24px;
}

body.about-page .page.inner-page {
  padding-bottom: 300px;
}

body.about-page .about-panel-grid {
  gap: 34px;
}

body.about-page .about-panel-card {
  padding: 24px 24px 22px;
}

body.about-page .about-panel-card h2 {
  font-size: clamp(28px, 2.35vw, 38px);
  margin-bottom: 14px;
}

body.about-page .about-panel-card p,
body.about-page .about-panel-card li {
  font-size: 18px;
  line-height: 1.42;
}

body.about-page .about-panel-card p + p {
  margin-top: 12px;
}

body.about-page .about-closing-line {
  font-weight: 700;
}

body.about-page .about-standard {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

body.about-page .about-standard li {
  position: relative;
  padding-left: 18px;
}

body.about-page .about-standard li + li {
  margin-top: 8px;
}

body.about-page .about-standard li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05em;
  color: #d6c3a3;
  font-size: 18px;
  line-height: 1;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
}

@media (max-width: 1100px) {
  body.about-page .page.inner-page {
    padding-bottom: 340px;
  }
}
/* FINAL BUTTON FIX */

.send-file-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;

  padding: 36px 34px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  border: 1px solid rgba(255,255,255,0.30);

  box-shadow: none;

  color: #f5e6c8;
  cursor: pointer;
  overflow: visible;

  animation: floatBtn 4s ease-in-out infinite;
}

.send-file-btn::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.05)
  );
}

.send-file-btn::before {
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:16px;

  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0)
  );

  animation:pulseLine 2.5s ease-in-out infinite;
}

@keyframes floatBtn {
  0%{transform:translateY(0);}
  50%{transform:translateY(-4px);}
  100%{transform:translateY(0);}
}

@keyframes pulseLine {
  0%{opacity:0.2;height:10px;}
  50%{opacity:0.7;height:16px;}
  100%{opacity:0.2;height:10px;}
}

/* SURGICAL INNER PAGE POSITION + PANEL TINT FIX */
body.inner-body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.inner-body .page.inner-page {
  min-height: 100vh !important;
  height: auto !important;
  padding: 28px 24px 230px !important;
}

body.inner-body .inner-shell {
  padding-bottom: 22px !important;
}

body.inner-body .panel-card {
  background:
    linear-gradient(180deg, rgba(255, 242, 227, 0.055) 0%, rgba(155, 106, 72, 0.12) 0%, rgba(28, 20, 16, 0.68) 42%, rgba(11, 9, 8, 0.82) 100%) !important;
  border: 1px solid rgba(194, 150, 107, 0.34) !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.inner-body .inner-cowboy-launcher {
  display: none !important;
}

body.inner-body .inner-send-file-dots {
  display: none !important;
}

body.inner-body .inner-cowboy-cta {
  position: fixed !important;
  right: 30px !important;
  bottom: 92px !important;
  width: 220px !important;
  height: 92px !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 70 !important;
  pointer-events: none !important;
}

body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  transform: none !important;
  width: 190px !important;
  height: 62px !important;
}

body.inner-body .inner-send-file-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 2px !important;
  padding: 10px 18px 10px 18px !important;
  text-align: left !important;
  text-decoration: none !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.11) 100%) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible !important;
}

body.inner-body .inner-send-file-button::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -12px;
  width: 108px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(224, 195, 153, 0.95) 22%, rgba(224,195,153,0.52) 72%, rgba(255,255,255,0.0) 100%);
  box-shadow: none;
}

body.inner-body .inner-send-file-button .btn-main {
  font-size: 18px !important;
  color: rgba(249, 241, 229, 0.98) !important;
}

body.inner-body .inner-send-file-button .btn-sub {
  font-size: 10px !important;
  color: rgba(245, 236, 222, 0.88) !important;
}

@media (max-width: 820px) {
  body.inner-body .page.inner-page {
    padding: 22px 16px 190px !important;
  }

  body.inner-body .inner-cowboy-cta {
    right: 16px !important;
    bottom: 74px !important;
    width: 182px !important;
    height: 72px !important;
  }

  body.inner-body .inner-send-file-button,
  body.inner-body .inner-send-file-hitbox {
    width: 168px !important;
    height: 56px !important;
  }

  body.inner-body .inner-send-file-button {
    padding: 8px 14px !important;
  }

  body.inner-body .inner-send-file-button .btn-main {
    font-size: 16px !important;
  }

  body.inner-body .inner-send-file-button .btn-sub {
    font-size: 9px !important;
  }

  body.inner-body .inner-send-file-button::after {
    width: 88px;
    bottom: -10px;
  }
}


/* 2026-03-26 SURGICAL FIXES */
body.inner-body {
  min-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.inner-body .page.inner-page {
  min-height: 100vh !important;
  height: auto !important;
  padding: 24px 24px 280px !important;
  overflow: visible !important;
}

body.inner-body .inner-shell {
  width: min(1080px, calc(100vw - 48px)) !important;
  margin: 0 auto !important;
  padding-bottom: 72px !important;
}

body.inner-body .inner-head {
  margin-bottom: 28px !important;
}

body.inner-body .inner-brand {
  margin: 4px auto 14px !important;
}

body.inner-body .inner-brand img {
  width: min(360px, 58vw) !important;
  height: auto !important;
}

body.inner-body .panel-card {
  border-radius: 22px !important;
  padding: 26px 28px !important;
}

body.inner-body .panel-card p,
body.inner-body .panel-card li,
body.inner-body .inner-subtitle {
  font-size: 18px !important;
  line-height: 1.45 !important;
}

body.inner-body .panel-card h3 {
  font-size: clamp(30px, 2.2vw, 34px) !important;
  margin-bottom: 10px !important;
}

body.inner-body .nav {
  margin-bottom: 20px !important;
}

body.inner-body .nav a {
  font-size: 17px !important;
}

body.inner-body .bottom-tagline {
  position: fixed !important;
  right: 40px !important;
  left: auto !important;
  bottom: 188px !important;
  width: 210px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #d6c3a3 !important;
  z-index: 95 !important;
}

/* cleaner how it works */
body.how-it-works-page .inner-shell {
  width: min(760px, calc(100vw - 48px)) !important;
}

.hiw-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}


.hiw-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 250px !important;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 28px 26px !important;
}


.hiw-line {
  display: none;
}

.hiw-copy {
  min-width: 0;
  width: 100%;
}

.hiw-item .panel-label {
  margin-bottom: 10px !important;
}

.hiw-item h3 {
  margin-bottom: 12px !important;
}

.hiw-item p {
  font-size: 17px !important;
  line-height: 1.5 !important;
}

/* actual glass button instead of melted tupperware */
body.inner-body .inner-cowboy-cta {
  position: fixed !important;
  right: 28px !important;
  bottom: 102px !important;
  left: auto !important;
  width: 230px !important;
  height: 98px !important;
  z-index: 90 !important;
  pointer-events: none !important;
}

body.inner-body .inner-cowboy-cta::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -12px;
  height: 42px;
  border-radius: 999px;
  background: none;
  filter: none;
  opacity: 0;
  animation: ccGlowPulse 2.3s ease-in-out infinite;
}

body.inner-body .inner-send-file-button,
body.inner-body .inner-send-file-hitbox {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 208px !important;
  height: 70px !important;
  left: auto !important;
  transform: none !important;
}

body.inner-body .inner-send-file-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 12px 20px !important;
  text-align: left !important;
  text-decoration: none !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 38%, rgba(255,255,255,0.07) 100%) !important;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible !important;
  animation: ccGlassBob 2.9s ease-in-out infinite !important;
}

body.inner-body .inner-send-file-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 22%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.10) 100%);
  pointer-events: none;
}

body.inner-body .inner-send-file-button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(224,195,153,1) 20%, rgba(255,236,205,0.92) 50%, rgba(224,195,153,1) 80%, rgba(255,255,255,0));
  box-shadow: none;
  animation: ccLinePulse 2.3s ease-in-out infinite;
}

body.inner-body .inner-send-file-button .btn-main,
body.inner-body .inner-send-file-button .btn-sub {
  position: relative;
  z-index: 1;
}

body.inner-body .inner-send-file-button .btn-main {
  font-size: 20px !important;
  line-height: 1 !important;
  color: rgba(248, 240, 230, 0.98) !important;
}

body.inner-body .inner-send-file-button .btn-sub {
  font-size: 10px !important;
  line-height: 1.1 !important;
  letter-spacing: 1.2px !important;
  color: rgba(245, 236, 222, 0.88) !important;
}

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

@keyframes ccLinePulse {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}

@media (max-width: 980px) {
  body.inner-body .page.inner-page {
    padding: 20px 16px 260px !important;
  }

  body.inner-body .inner-shell,
  body.how-it-works-page .inner-shell {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  .hiw-flow {
    max-width: 100%;
    gap: 34px;
  }

  .hiw-item {
    padding: 22px 20px 20px !important;
  }

  body.inner-body .inner-cowboy-cta {
    right: 18px !important;
    bottom: 88px !important;
    width: 196px !important;
    height: 88px !important;
  }
}


/* how it works vertical cards */
body.how-it-works-page .inner-shell {
  width: min(760px, calc(100vw - 48px)) !important;
}

.hiw-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 26px !important;
  max-width: 440px !important;
  margin: 0 auto !important;
}

.hiw-item {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  min-height: 190px !important;
  padding: 28px 28px 26px !important;
}

.hiw-copy {
  min-width: 0 !important;
  width: 100% !important;
}

.hiw-item .panel-label {
  margin-bottom: 12px !important;
}

.hiw-item h3 {
  margin-bottom: 12px !important;
}

.hiw-item p {
  font-size: 17px !important;
  line-height: 1.5 !important;
}


/* 2026-03-26 step 3 fit fix */
body.how-it-works-page .steps-grid.hiw-three-col {
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  justify-items: center;
  gap: 34px;
  max-width: 1280px;
}

body.how-it-works-page .steps-grid.hiw-three-col .step-card {
  max-width: 1280px;
  min-height: 286px !important;
}

body.how-it-works-page .steps-grid.hiw-three-col .step-card:nth-child(3) {
  max-width: 1280px;
}

body.how-it-works-page .steps-grid.hiw-three-col .step-card:nth-child(3) h3 {
  font-size: clamp(27px, 1.95vw, 31px) !important;
  line-height: 1.02 !important;
}


.step-box p,
.step-card p,
.card p {
  line-height: 1.6;
}


.send-file-btn {
  box-shadow: none;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: none; }
  50% { box-shadow: none; }
  100% { box-shadow: none; }
}


/* FINAL GLOW CLEANUP */
.ticker { box-shadow: none; }
.nav a,
.nav a:hover,
.page:not(.inner-page) > .nav a,
.page:not(.inner-page) > .nav a:hover,
body.inner-body .nav a,
body.inner-body .nav a:hover {
  text-shadow: none;
  box-shadow: none;
}

body.inner-body .inner-cowboy-cta::before {
  background: none !important;
  filter: none;
  opacity: 0 !important;
  animation: none !important;
}

body.inner-body .inner-send-file-button {
  box-shadow: none;
  animation: ccGlassBob 2.9s ease-in-out infinite !important;
}

body.inner-body .inner-send-file-button::after {
  box-shadow: none;
}


/* ONLY CTA GLOW */
.inner-send-file-button {
  box-shadow: 0 0 10px rgba(255,215,0,0.5) !important;
  animation: pulse 1.8s ease-in-out infinite !important;
}

@keyframes pulse {
  0% { box-shadow: 0 0 6px rgba(255,215,0,0.3); }
  50% { box-shadow: 0 0 18px rgba(255,215,0,0.8); }
  100% { box-shadow: 0 0 6px rgba(255,215,0,0.3); }
}


/* MINIMAL TICKER FIX */
.ticker {
  border-top: 1px solid rgba(229,224,216,0.18);
}
.ticker-track {
  color: rgba(229, 224, 216, 0.72) !important;
}



/* FINAL REAL FINISH: ticker restored, line darker, nav darker */
.ticker {
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(229,224,216,0.08) !important;
  box-shadow: none !important;
}

.ticker-track {
  display: flex !important;
  width: max-content !important;
  min-width: 200% !important;
  padding-left: 0 !important;
  white-space: nowrap !important;
  animation: tickerFlow 55s linear infinite !important;
  will-change: transform !important;
  color: rgba(229,224,216,0.68) !important;
  text-shadow: none !important;
}

.ticker-group {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  padding-right: 42px !important;
}

@keyframes tickerFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav a,
.page:not(.inner-page) > .nav a,
body.inner-body .nav a {
  color: rgba(229,224,216,0.48) !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.nav a:hover,
.page:not(.inner-page) > .nav a:hover,
body.inner-body .nav a:hover {
  color: rgba(229,224,216,0.78) !important;
  text-shadow: none !important;
}
