/* ===== Skuppy Wuppies — style.css =====
   Dark theme #0D1015 · cyan accent #22D3EE · supporting #06B6D4 / #A5F3FC / #082F3A */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: #0D1015;
  color: #E6EEF2;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: #22D3EE;
  text-decoration: none;
}

a:hover {
  color: #A5F3FC;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: #E6EEF2;
}

/* ============ PAW NAVIGATION ============ */
.paw-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  background-color: #0A0D11;
  border-bottom: 1px solid #14202B;
}

.paw-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.wordmark {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #E6EEF2;
}

.paw-brand:hover .wordmark {
  color: #A5F3FC;
}

/* CSS-drawn paw print badge */
.paw-badge {
  position: relative;
  width: 34px;
  height: 30px;
  flex: none;
}

.paw-badge .pad {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  background: #22D3EE;
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
}

.paw-badge .toe {
  position: absolute;
  width: 10px;
  height: 12px;
  background: #06B6D4;
  border-radius: 50%;
}

.paw-badge .toe-1 { left: 0; top: 4px; }
.paw-badge .toe-2 { left: 7px; top: 0; }
.paw-badge .toe-3 { right: 7px; top: 0; }
.paw-badge .toe-4 { right: 0; top: 4px; }

.paw-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0 auto;
}

.paw-links a {
  color: #B8C7D1;
  font-weight: 500;
  font-size: 0.95rem;
}

.paw-links a:hover {
  color: #22D3EE;
}

.paw-cta {
  flex: none;
  background-color: #22D3EE;
  color: #082F3A;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.paw-cta:hover {
  background-color: #A5F3FC;
  color: #082F3A;
}

.paw-toggle {
  display: none;
  flex: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 30px;
  padding: 4px;
}

.paw-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #22D3EE;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s ease;
}

/* ============ HERO (HOT AIR BALLOON) ============ */
.balloon-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #22D3EE;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #B8C7D1;
  max-width: 520px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-block;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 9px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-solid {
  background-color: #22D3EE;
  color: #082F3A;
}

.btn-solid:hover {
  background-color: #A5F3FC;
  color: #082F3A;
}

.btn-ghost {
  border-color: #22D3EE;
  color: #22D3EE;
  background: transparent;
}

.btn-ghost:hover {
  background-color: #082F3A;
  color: #A5F3FC;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* --- CSS-drawn hot air balloon --- */
.balloon-stage {
  position: relative;
  width: 320px;
  height: 400px;
  margin: 0 auto;
}

.balloon-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, #0E7490 0%, #0D1015 70%);
}

.balloon-crown {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 16px;
  background: #06B6D4;
  border-radius: 8px 8px 3px 3px;
  z-index: 2;
}

.balloon-envelope {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 230px;
  background: linear-gradient(180deg, #A5F3FC 0%, #22D3EE 42%, #06B6D4 78%, #0E7490 100%);
  border-radius: 50% 50% 48% 48% / 62% 62% 38% 38%;
  box-shadow: 0 0 60px #082F3A;
  z-index: 1;
}

.balloon-envelope .gore {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #0E7490;
  border-radius: 3px;
}

.balloon-envelope .g1 { left: 22%; }
.balloon-envelope .g2 { left: 50%; transform: translateX(-50%); }
.balloon-envelope .g3 { right: 22%; }

.balloon-mouth {
  position: absolute;
  top: 238px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 16px;
  background: #06B6D4;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 28% 100%);
  z-index: 2;
}

.balloon-flame {
  position: absolute;
  top: 254px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 26px;
  background: #A5F3FC;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 18px #22D3EE;
  z-index: 2;
  transform-origin: bottom center;
  animation: flicker 0.9s ease-in-out infinite alternate;
}

@keyframes flicker {
  from { transform: translateX(-50%) scaleY(0.85); }
  to { transform: translateX(-50%) scaleY(1.1); }
}

.balloon-rope {
  position: absolute;
  top: 262px;
  width: 3px;
  height: 66px;
  background: #A5F3FC;
  z-index: 1;
}

.balloon-rope.rope-1 { left: 50%; transform: translateX(-42px); }
.balloon-rope.rope-2 { left: 50%; transform: translateX(-1px); }
.balloon-rope.rope-3 { left: 50%; transform: translateX(41px); }

.balloon-basket {
  position: absolute;
  top: 328px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 44px;
  background: #0E7490;
  border-radius: 5px;
  z-index: 2;
  overflow: hidden;
}

.balloon-basket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, #0E7490 0 6px, #082F3A 6px 9px);
}

.cloud {
  position: absolute;
  z-index: 0;
  background: #0E7490;
  border-radius: 40px;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #0E7490;
  border-radius: 50%;
}

.cloud-left {
  width: 76px;
  height: 30px;
  top: 40px;
  left: 2px;
}

.cloud-left::before {
  width: 40px;
  height: 40px;
  top: -18px;
  left: 12px;
}

.cloud-left::after {
  width: 30px;
  height: 30px;
  top: -10px;
  left: 38px;
}

.cloud-right {
  width: 60px;
  height: 24px;
  top: 120px;
  right: 0;
}

.cloud-right::before {
  width: 32px;
  height: 32px;
  top: -14px;
  left: 10px;
}

.cloud-right::after {
  width: 24px;
  height: 24px;
  top: -8px;
  left: 30px;
}

/* ============ STATEMENT ROW ============ */
.statement-row {
  background-color: #0A0D11;
  border-top: 1px solid #14202B;
  border-bottom: 1px solid #14202B;
  padding: 84px 0;
}

.statement-lede {
  font-size: 1.25rem;
  color: #22D3EE;
  font-weight: 700;
  margin-bottom: 14px;
}

.statement-big {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  max-width: 900px;
  color: #E6EEF2;
}

/* ============ STATS ============ */
.stats-section {
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-cell {
  background-color: #0A0D11;
  border: 1px solid #14202B;
  border-radius: 14px;
  padding: 34px 20px;
}

.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #22D3EE;
  margin-bottom: 6px;
}

.stat-label {
  color: #B8C7D1;
  font-weight: 500;
}

/* ============ SECTION HEADINGS ============ */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.section-sub {
  color: #B8C7D1;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ============ PROCESS LIST ============ */
.process-section {
  background-color: #0A0D11;
  padding: 84px 0;
}

.process-list {
  list-style: none;
  counter-reset: step;
  max-width: 800px;
}

.process-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 68px;
  bottom: 0;
  width: 2px;
  background: #14202B;
}

.step-num {
  flex: none;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #082F3A;
  color: #22D3EE;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  border: 2px solid #0E7490;
}

.step-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step-body p {
  color: #B8C7D1;
}

/* ============ COMPARISON TABLE ============ */
.compare-section {
  padding: 84px 0;
}

.compare-scroll {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #14202B;
}

.compare-table thead th {
  background: #082F3A;
  color: #A5F3FC;
  font-size: 1.05rem;
}

.compare-table thead th.col-alt {
  background: #0E7490;
  color: #E6EEF2;
}

.compare-table tbody th {
  color: #E6EEF2;
  font-weight: 600;
}

.compare-table tbody td {
  color: #B8C7D1;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: #0A0D11;
}

/* ============ HORIZONTAL SCROLL CARDS ============ */
.systems-section {
  background-color: #0A0D11;
  padding: 84px 0 40px;
}

.hscroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hscroll::-webkit-scrollbar {
  height: 8px;
}

.hscroll::-webkit-scrollbar-thumb {
  background: #0E7490;
  border-radius: 4px;
}

.hscroll::-webkit-scrollbar-track {
  background: #14202B;
}

.hcard {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #0D1015;
  border: 1px solid #14202B;
  border-radius: 16px;
  padding: 28px;
}

.hcard:hover {
  border-color: #22D3EE;
}

.hcard-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #22D3EE;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hcard h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hcard p {
  color: #B8C7D1;
  font-size: 0.95rem;
}

/* ============ TABBED PANELS ============ */
.platform-section {
  padding: 84px 0;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tab-btn {
  background: #0A0D11;
  color: #B8C7D1;
  border: 1px solid #14202B;
  padding: 11px 22px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #A5F3FC;
  border-color: #0E7490;
}

.tab-btn.is-active {
  background: #22D3EE;
  color: #082F3A;
  border-color: #22D3EE;
}

.tab-panel {
  display: none;
  background: #0A0D11;
  border: 1px solid #14202B;
  border-radius: 16px;
  padding: 30px;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #A5F3FC;
}

.tab-panel p {
  color: #B8C7D1;
  max-width: 720px;
}

/* ============ SPLIT CTA BAND ============ */
.cta-band {
  background-color: #082F3A;
  padding: 72px 0;
  border-top: 1px solid #0E7490;
  border-bottom: 1px solid #0E7490;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-copy p {
  color: #A5F3FC;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 84px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #B8C7D1;
  font-weight: 700;
}

.contact-form {
  background: #0A0D11;
  border: 1px solid #14202B;
  border-radius: 16px;
  padding: 30px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #E6EEF2;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #14202B;
  border-radius: 9px;
  background: #0D1015;
  color: #E6EEF2;
  font-family: inherit;
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #22D3EE;
}

.form-status {
  margin-top: 14px;
  color: #A5F3FC;
  font-weight: 600;
  min-height: 1.4em;
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 3px solid #22D3EE;
  background-color: #0A0D11;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #A5F3FC;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #B8C7D1;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #B8C7D1;
}

.footer-col ul a:hover {
  color: #22D3EE;
}

.footer-bottom {
  border-top: 1px solid #14202B;
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  color: #B8C7D1;
  font-size: 0.9rem;
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .balloon-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
  }

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

  .balloon-stage {
    height: 360px;
  }

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

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

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

@media (max-width: 700px) {
  .paw-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #0A0D11;
    border-bottom: 1px solid #14202B;
    margin: 0;
    padding: 10px 24px 16px;
  }

  .paw-nav.open .paw-links {
    display: flex;
  }

  .paw-links li {
    padding: 10px 0;
    border-bottom: 1px solid #14202B;
  }

  .paw-cta {
    display: none;
  }

  .paw-toggle {
    display: block;
    margin-left: auto;
  }

  .paw-nav.open .paw-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .paw-nav.open .paw-toggle span:nth-child(2) {
    opacity: 0;
  }

  .paw-nav.open .paw-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .statement-big {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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