:root {
  --gold: #d7a33b;
  --gold-deep: #a87016;
  --gold-light: #ffd16c;
  --red: #d71920;
  --ink: #070809;
  --panel: rgba(11, 12, 13, 0.82);
  --panel-soft: rgba(16, 18, 20, 0.72);
  --line: rgba(230, 171, 58, 0.58);
  --white: #ffffff;
  --muted: #d8d8d8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--white);
  background: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background-image: url("img/fondo_principal.png");
  background-position: center top;
  background-size: cover;
}

body::after {
  content: none;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  padding: 0 clamp(12px, 2vw, 32px) 24px 10px;
}

.site-header {
  position: absolute;
  top: 0;
  right: clamp(12px, 2vw, 32px);
  left: 10px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(390px, 545px) 1fr auto;
  align-items: start;
  gap: 10px;
}

.brand {
  --logo-size: clamp(389px, 43.9vw, 709px);
  --logo-crop-top: clamp(-100px, calc(20px - 7.42vw), -46px);
  --logo-crop-right: clamp(-91px, -5.62vw, -50px);
  --logo-crop-bottom: clamp(-148px, -9.14vw, -81px);
  --logo-crop-left: clamp(-98px, calc(12px - 6.85vw), -49px);
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  display: block;
  width: var(--logo-size);
  height: auto;
  margin: var(--logo-crop-top) var(--logo-crop-right) var(--logo-crop-bottom) var(--logo-crop-left);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.72));
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
}

.nav-scrim {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.9vw, 34px);
  width: fit-content;
  margin: 35px auto 0;
  padding: 8px clamp(14px, 1.8vw, 26px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 9, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  font-size: clamp(12px, 1vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.76);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav .is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

body:has(#funcionalidades:target) .main-nav .is-active::after,
body:has(#panel:target) .main-nav .is-active::after,
body:has(#suscripcion:target) .main-nav .is-active::after {
  opacity: 0;
  transform: scaleX(0.45);
}

body:has(#funcionalidades:target) .main-nav a[href="#funcionalidades"]::after,
body:has(#panel:target) .main-nav a[href="#panel"]::after,
body:has(#suscripcion:target) .main-nav a[href="#suscripcion"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.demo-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.demo-button {
  margin-top: 41px;
  padding: 0 22px;
  white-space: nowrap;
}

.demo-button:hover,
.demo-button:hover {
  transform: translateY(-2px);
}

.view {
  display: none !important;
}

body:not(:has(.view:target)) #inicio,
#inicio:target {
  display: grid !important;
}

#funcionalidades:target,
#panel:target,
#suscripcion:target {
  display: block !important;
}

body:has(#funcionalidades:target) #inicio,
body:has(#panel:target) #inicio,
body:has(#suscripcion:target) #inicio {
  display: none !important;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(370px, 0.85fr) minmax(520px, 1.25fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  min-height: calc(100vh - 96px);
  overflow: visible;
  padding: clamp(115px, 15vh, 165px) 0 24px;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin-top: 100px;
  margin-left: 35px;
}

h1 {
  max-width: 590px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(46px, 4.9vw, 82px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  background-color: #f4f4f1;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.24) 0 0.7px, transparent 1.2px),
    radial-gradient(circle at 72% 38%, rgba(0, 0, 0, 0.16) 0 0.7px, transparent 1.2px),
    repeating-linear-gradient(8deg, rgba(0, 0, 0, 0.09) 0 1px, transparent 1px 13px);
  background-size: 18px 18px, 28px 28px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.82));
}

h1 span {
  display: block;
  color: transparent;
  background-color: var(--gold);
  background-image:
    radial-gradient(circle at 16% 26%, rgba(0, 0, 0, 0.22) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 82% 42%, rgba(0, 0, 0, 0.14) 0 0.7px, transparent 1.3px),
    repeating-linear-gradient(-7deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 14px);
  background-size: 20px 20px, 32px 32px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.34em;
  filter: drop-shadow(0 5px 0 #47330f) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.74));
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.43;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95);
}

.product-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-right: -7vw;
  margin-left: -4vw;
  transform: translateY(33px);
}

.product-stage::before {
  position: absolute;
  inset: 18% 6% 4%;
  z-index: -1;
  border-radius: 60px;
  background: radial-gradient(circle at 54% 50%, rgba(215, 163, 59, 0.22), transparent 56%);
  content: "";
  filter: blur(18px);
}

.product-stage img {
  display: block;
  width: min(58vw, 920px);
  max-width: none;
  filter: drop-shadow(var(--shadow));
  mix-blend-mode: normal;
}

.price-card {
  position: absolute;
  right: clamp(250px, 41vw, 800px);
  bottom: clamp(50px, 13vh, 150px);
  z-index: 4;
  display: grid;
  min-width: 178px;
  padding: 10px 18px 9px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.9));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.52), inset 0 0 22px rgba(215, 163, 59, 0.12);
  text-align: center;
  text-transform: uppercase;
}

.price-card p,
.price-card span,
.price-card small {
  margin: 0;
  font-weight: 900;
}

.price-card p {
  color: var(--gold-light);
  font-size: 11px;
}

.price-card span {
  margin-top: 8px;
  color: #e8e8e8;
  font-size: 11px;
}

.price-card strong {
  color: var(--gold-light);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 4px 0 #4c3210;
}

.price-card small {
  color: #f0f0f0;
  font-size: 11px;
}

.home-strip {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 12px;
  padding: 0 clamp(16px, 2vw, 28px);
}

.home-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 19px 19px 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.home-card h2 {
  margin: 0;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.22;
  text-transform: uppercase;
}

.home-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-top: 4px;
  color: var(--gold);
}

.features {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  overflow: visible;
  margin: 0;
  padding: clamp(195px, 23vh, 255px) clamp(18px, 4.4vw, 74px) clamp(52px, 7vh, 88px);
  scroll-margin-top: 24px;
}

.features::before {
  content: none;
}

#inicio {
  margin-top: 0 !important;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 4.2vh, 54px);
  text-align: center;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.8);
}

.section-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(42px, 4.4vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f4f4f1;
}

.section-heading p {
  max-width: 900px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.feature-card {
  display: flex;
  min-height: clamp(330px, 32vw, 430px);
  padding: clamp(20px, 2vw, 30px) clamp(18px, 1.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.84), rgba(5, 5, 5, 0.74));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5), inset 0 0 34px rgba(215, 163, 59, 0.08);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.feature-card h3 {
  min-height: 64px;
  margin: 18px 0 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(21px, 1.55vw, 30px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.8);
}

.feature-line {
  display: block;
  width: 72px;
  height: 4px;
  margin: 8px 0 16px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215, 163, 59, 0.5);
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 600;
  line-height: 1.46;
}

.feature-card mark {
  color: var(--gold-light);
  background: transparent;
}

.feature-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 285px);
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(215, 163, 59, 0.82), rgba(126, 89, 26, 0.92));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.36);
  font-size: clamp(14px, 1vw, 18px);
  text-transform: uppercase;
}

.feature-card strong::before {
  width: 22px;
  height: 12px;
  border-bottom: 4px solid var(--gold-light);
  border-left: 4px solid var(--gold-light);
  content: "";
  transform: rotate(-45deg) translateY(-2px);
}

.panel-view {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  margin: 0;
  padding: clamp(178px, 21vh, 238px) clamp(18px, 4vw, 70px) clamp(58px, 7vh, 96px);
}

.panel-hero {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vh, 54px);
  padding: clamp(16px, 2vw, 24px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(215, 163, 59, 0.18);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(3px);
  text-align: center;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.82);
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-hero h2 {
  margin: 0;
  color: #f4f4f1;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(52px, 5.1vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-hero p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 650;
  line-height: 1.48;
}

.panel-showcase {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  max-width: 1280px;
  margin: 0 auto;
}

.panel-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.panel-tab-list {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 42px);
  padding: 10px;
  border: 1px solid rgba(215, 163, 59, 0.22);
  border-radius: 10px;
  background: rgba(4, 5, 6, 0.58);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
}

.panel-tab-list label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 clamp(18px, 3vw, 38px);
  border: 1px solid rgba(215, 163, 59, 0.34);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.panel-tab-list label:hover {
  transform: translateY(-1px);
}

#panel-tab-partidas:checked ~ .panel-tab-list label[for="panel-tab-partidas"],
#panel-tab-users:checked ~ .panel-tab-list label[for="panel-tab-users"],
#panel-tab-campos:checked ~ .panel-tab-list label[for="panel-tab-campos"] {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.panel-showcase-users,
.panel-showcase-campos {
  display: none;
}

#panel-tab-users:checked ~ .panel-showcase-partidas,
#panel-tab-campos:checked ~ .panel-showcase-partidas {
  display: none;
}

#panel-tab-users:checked ~ .panel-showcase-users {
  display: grid;
}

#panel-tab-campos:checked ~ .panel-showcase-campos {
  display: grid;
}

.panel-section-title {
  max-width: 760px;
  margin: 0 auto clamp(4px, 1vw, 10px);
  padding: clamp(14px, 1.8vw, 24px) clamp(18px, 3vw, 36px);
  border: 1px solid rgba(215, 163, 59, 0.16);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.06));
  backdrop-filter: blur(3px);
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.82);
}

.panel-section-title span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 900;
  text-transform: uppercase;
}

.panel-section-title h3 {
  margin: 0;
  color: #f4f4f1;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(46px, 4.2vw, 76px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-section-title p {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 650;
  line-height: 1.45;
}

.panel-card {
  display: grid;
  grid-template-columns: minmax(245px, 0.42fr) minmax(420px, 1fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
  min-height: clamp(300px, 28vw, 430px);
  padding: clamp(20px, 2vw, 32px);
  border: 1px solid rgba(215, 163, 59, 0.48);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(8, 10, 11, 0.91), rgba(14, 16, 17, 0.8));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), inset 0 0 34px rgba(215, 163, 59, 0.06);
  backdrop-filter: blur(7px);
}

.panel-card-reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(245px, 0.42fr);
}

.panel-card-reverse .panel-copy {
  order: 2;
}

.panel-card-reverse .panel-image {
  order: 1;
}

.panel-copy {
  color: #fff;
}

.panel-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(38px, 3.5vw, 62px);
  line-height: 0.9;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.68);
}

.panel-copy h3 {
  max-width: 390px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(26px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.86);
}

.panel-line {
  display: block;
  width: 76px;
  height: 4px;
  margin: 22px 0;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215, 163, 59, 0.5);
}

.panel-copy p {
  max-width: 390px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

.panel-copy p:last-child {
  margin-bottom: 0;
}

.panel-image {
  margin: 0;
}

.panel-zoom {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.panel-zoom img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, filter 180ms ease;
}

.panel-zoom:hover img {
  filter: brightness(1.08);
  transform: scale(1.01);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 48px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.image-lightbox[aria-hidden="false"] {
  display: flex;
}

.image-lightbox img {
  display: block;
  max-width: min(96vw, 1500px);
  max-height: 90vh;
  border: 1px solid rgba(215, 163, 59, 0.5);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: clamp(14px, 2vw, 26px);
  right: clamp(14px, 2vw, 28px);
  z-index: 201;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(215, 163, 59, 0.58);
  border-radius: 7px;
  color: #fff;
  background: rgba(8, 9, 10, 0.9);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.sponsors-view {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  margin: 0;
  padding: clamp(178px, 21vh, 238px) clamp(18px, 4vw, 70px) clamp(58px, 7vh, 96px);
}

.sponsors-hero {
  max-width: 850px;
  margin: 0 auto clamp(30px, 4vh, 54px);
  padding: clamp(18px, 2vw, 28px) clamp(18px, 3vw, 40px);
  border: 1px solid rgba(215, 163, 59, 0.18);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(3px);
  text-align: center;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.82);
}

.sponsors-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: clamp(17px, 1.45vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
}

.sponsors-hero h2 {
  margin: 0;
  color: #f4f4f1;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(50px, 4.9vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sponsors-hero p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 650;
  line-height: 1.48;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.sponsor-card {
  position: relative;
  min-height: 270px;
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(215, 163, 59, 0.42);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(8, 10, 11, 0.9), rgba(14, 16, 17, 0.78));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.46), inset 0 0 34px rgba(215, 163, 59, 0.07);
  backdrop-filter: blur(7px);
  overflow: hidden;
}

.sponsor-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215, 163, 59, 0.2);
  border-radius: 999px;
  content: "";
}

.sponsor-card-wide,
.sponsor-card-highlight {
  display: grid;
  grid-column: span 2;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 220px;
}

.sponsor-card-highlight {
  grid-column: 2 / span 2;
  background: linear-gradient(135deg, rgba(42, 31, 12, 0.88), rgba(12, 13, 14, 0.84));
}

.sponsor-number {
  color: var(--gold-light);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  line-height: 0.9;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.7);
}

.sponsor-card h3 {
  margin: 16px 0 0;
  color: #fff;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 900;
  line-height: 1.13;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.82);
}

.sponsor-card-wide h3,
.sponsor-card-highlight h3 {
  margin-top: 0;
}

.sponsor-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.5;
}

.sponsor-icon {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  color: var(--gold);
}

.sponsor-megaphone::before {
  position: absolute;
  top: 18px;
  left: 4px;
  width: 46px;
  height: 34px;
  border: 6px solid currentColor;
  border-right-width: 14px;
  border-radius: 8px 18px 18px 8px;
  content: "";
}

.sponsor-megaphone::after {
  position: absolute;
  right: 5px;
  bottom: 10px;
  width: 20px;
  height: 34px;
  border-left: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  content: "";
  transform: rotate(-18deg);
}

.sponsor-badge::before {
  position: absolute;
  inset: 6px 14px 18px;
  border: 7px solid currentColor;
  border-radius: 14px;
  content: "";
}

.sponsor-badge::after {
  position: absolute;
  right: 18px;
  bottom: 2px;
  left: 18px;
  height: 28px;
  border-right: 7px solid currentColor;
  border-left: 7px solid currentColor;
  content: "";
}

.sponsor-chart::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 48px;
  border-bottom: 7px solid currentColor;
  border-left: 7px solid currentColor;
  content: "";
}

.sponsor-chart::after {
  position: absolute;
  right: 12px;
  bottom: 24px;
  width: 46px;
  height: 30px;
  border-top: 7px solid currentColor;
  border-right: 7px solid currentColor;
  content: "";
  transform: skewY(-28deg);
}

.pricing-view {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  margin: 0;
  padding: clamp(178px, 21vh, 238px) clamp(18px, 4vw, 70px) clamp(58px, 7vh, 96px);
}

.pricing-hero {
  max-width: 900px;
  margin: 0 auto clamp(30px, 4vh, 54px);
  padding: clamp(18px, 2vw, 28px) clamp(18px, 3vw, 40px);
  border: 1px solid rgba(215, 163, 59, 0.18);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(3px);
  text-align: center;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.82);
}

.pricing-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: clamp(17px, 1.45vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-hero h2 {
  margin: 0;
  color: #f4f4f1;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(44px, 4.1vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-hero p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 650;
  line-height: 1.48;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: clamp(18px, 2vw, 30px);
  max-width: 1260px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-plan {
  position: relative;
  display: flex;
  min-height: 600px;
  padding: clamp(22px, 2.1vw, 34px);
  border: 1px solid rgba(215, 163, 59, 0.42);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(8, 10, 11, 0.92), rgba(14, 16, 17, 0.8));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), inset 0 0 34px rgba(215, 163, 59, 0.07);
  backdrop-filter: blur(7px);
  flex-direction: column;
  overflow: hidden;
}

.pricing-plan::after {
  position: absolute;
  right: -56px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(215, 163, 59, 0.18);
  border-radius: 999px;
  content: "";
}

.pricing-featured {
  border-color: rgba(255, 209, 108, 0.82);
  background: linear-gradient(160deg, rgba(43, 31, 10, 0.96), rgba(12, 13, 14, 0.88));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.62), 0 0 34px rgba(215, 163, 59, 0.22);
  transform: translateY(-14px);
}

.plan-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(215, 163, 59, 0.38);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(215, 163, 59, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-plan h3 {
  margin: 0;
  color: #fff;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(34px, 2.8vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.82);
}

.plan-subtitle {
  min-height: 76px;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 650;
  line-height: 1.45;
}

.plan-price {
  display: grid;
  gap: 2px;
  margin: 0 0 26px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 209, 108, 0.38);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.52), rgba(215, 163, 59, 0.11));
  text-align: center;
}

.old-price {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
}

.plan-price strong {
  color: var(--gold-light);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(54px, 4.7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 5px 0 #4c3210, 0 18px 34px rgba(0, 0, 0, 0.72);
}

.plan-price small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-plan ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.42;
}

.pricing-plan li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 9px;
  border-bottom: 3px solid var(--gold-light);
  border-left: 3px solid var(--gold-light);
  content: "";
  transform: rotate(-45deg);
}

.feature-icon {
  position: relative;
  display: block;
  width: 96px;
  height: 96px;
  margin-top: 0;
  color: var(--gold);
}

.cloud::before {
  position: absolute;
  right: 5px;
  bottom: 22px;
  left: 5px;
  height: 40px;
  border: 7px solid currentColor;
  border-radius: 44px;
  content: "";
}

.cloud::after {
  position: absolute;
  top: 16px;
  left: 25px;
  width: 43px;
  height: 43px;
  border: 7px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
}

.design::before {
  position: absolute;
  top: 19px;
  left: 8px;
  width: 63px;
  height: 48px;
  border: 6px solid currentColor;
  border-radius: 8px;
  content: "";
  box-shadow: inset 0 18px 0 rgba(215, 163, 59, 0.26);
}

.design::after {
  position: absolute;
  right: 7px;
  bottom: 13px;
  width: 10px;
  height: 56px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: rotate(42deg);
  transform-origin: center;
}

.app::before {
  position: absolute;
  top: 8px;
  left: 23px;
  width: 50px;
  height: 80px;
  border: 7px solid currentColor;
  border-radius: 18px;
  content: "";
}

.app::after {
  position: absolute;
  top: 39px;
  left: 50%;
  width: 32px;
  height: 32px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 92%, 50% 70%, 21% 92%, 31% 56%, 2% 35%, 38% 34%);
  content: "";
  transform: translateX(-50%);
}

.refresh::before,
.refresh::after {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 7px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.refresh::before {
  top: 12px;
  right: 8px;
  transform: rotate(-32deg);
}

.refresh::after {
  bottom: 12px;
  left: 8px;
  transform: rotate(148deg);
}

.sponsor-symbol::before {
  position: absolute;
  top: 14px;
  left: 10px;
  width: 54px;
  height: 38px;
  border: 7px solid currentColor;
  border-right-width: 16px;
  border-radius: 8px 22px 22px 8px;
  content: "";
}

.sponsor-symbol::after {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 24px;
  height: 36px;
  border-bottom: 7px solid currentColor;
  border-left: 7px solid currentColor;
  content: "";
  transform: rotate(-18deg);
}

.globe {
  border: 5px solid currentColor;
  border-radius: 50%;
}

.globe::before,
.globe::after {
  position: absolute;
  inset: 9px;
  border: 3px solid currentColor;
  border-right: 0;
  border-left: 0;
  border-radius: 50%;
  content: "";
}

.globe::after {
  inset: -5px 22px;
  border: 0;
  border-right: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.brush::before {
  position: absolute;
  top: 2px;
  left: 29px;
  width: 8px;
  height: 62px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: rotate(38deg);
}

.brush::after {
  position: absolute;
  right: 14px;
  bottom: 8px;
  width: 28px;
  height: 18px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 20px 20px;
  content: "";
  transform: rotate(38deg);
}

.server {
  border: 5px solid currentColor;
  border-radius: 18px;
}

.server::before,
.server::after {
  position: absolute;
  right: 10px;
  left: 10px;
  height: 5px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.server::before {
  top: 19px;
}

.server::after {
  bottom: 19px;
}

.chain::before,
.chain::after {
  position: absolute;
  width: 34px;
  height: 20px;
  border: 5px solid currentColor;
  border-radius: 99px;
  content: "";
  transform: rotate(-45deg);
}

.chain::before {
  top: 10px;
  left: 4px;
}

.chain::after {
  right: 3px;
  bottom: 11px;
}

.phone {
  width: 38px;
  border: 5px solid currentColor;
  border-radius: 11px;
}

.phone::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 4px 14px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 35px 0 0;
    overflow-x: auto;
    padding: 8px 16px;
  }

  .demo-button {
    margin-top: clamp(16px, 3vw, 36px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(120px, 16vh, 170px);
    padding-bottom: 112px;
  }

  .product-stage {
    justify-self: end;
    margin-top: -17px;
    margin-right: -13vw;
  }

  .product-stage img {
    width: min(78vw, 850px);
  }

  .price-card {
    right: auto;
    bottom: clamp(28px, 5vw, 62px);
    left: clamp(170px, 24vw, 300px);
  }

  .home-strip {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    margin-top: 48px;
  }

  .features {
    margin-top: 0;
    padding-top: clamp(175px, 21vh, 230px);
  }

  .panel-view {
    padding-top: clamp(170px, 20vh, 225px);
  }

  .sponsors-view {
    padding-top: clamp(170px, 20vh, 225px);
  }

  .pricing-view {
    padding-top: clamp(170px, 20vh, 225px);
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .pricing-plan {
    min-height: 0;
  }

  .pricing-featured {
    transform: none;
  }

  .sponsor-card-wide,
  .sponsor-card-highlight {
    grid-column: span 2;
  }

  .panel-card,
  .panel-card-reverse {
    grid-template-columns: 1fr;
  }

  .panel-card-reverse .panel-copy,
  .panel-card-reverse .panel-image {
    order: initial;
  }

  .panel-copy h3,
  .panel-copy p {
    max-width: 620px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 820px) {
  html:has(.nav-toggle:checked),
  body:has(.nav-toggle:checked) {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .page-shell {
    padding: 0 12px 22px;
    overflow: visible;
  }

  .site-header {
    position: absolute;
    top: 0;
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 52px;
    align-items: start;
    gap: 0 10px;
  }

  .brand {
    grid-column: 1;
    --logo-size: min(94vw, 430px);
    --logo-crop-top: clamp(-52px, calc(20px - 15.9vw), -38px);
    --logo-crop-right: clamp(-55px, -12vw, -44px);
    --logo-crop-bottom: clamp(-89px, -19.5vw, -72px);
    --logo-crop-left: clamp(-55px, calc(12px - 14.7vw), -41px);
  }

  .menu-toggle {
    position: fixed;
    top: 18px;
    right: 12px;
    z-index: 35;
    display: inline-grid;
    align-content: center;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    margin-top: 0;
    border: 1px solid rgba(215, 163, 59, 0.68);
    border-radius: 6px;
    background: rgba(7, 8, 9, 0.82);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 99px;
    background: var(--gold-light);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: block;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .nav-toggle:checked ~ .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    align-content: start;
    gap: 0;
    width: min(82vw, 330px);
    margin: 0;
    padding: 92px 18px 24px;
    border-right: 1px solid rgba(215, 163, 59, 0.42);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(13, 14, 15, 0.96));
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.58);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 240ms ease;
  }

  .main-nav::before {
    margin: 0 0 18px;
    color: var(--gold-light);
    content: "Airsoft Manager";
    font-weight: 900;
    text-transform: uppercase;
  }

  .main-nav a {
    padding: 17px 6px;
    border-bottom: 1px solid rgba(215, 163, 59, 0.2);
    font-size: 15px;
  }

  .main-nav a::after {
    right: 6px;
    bottom: 9px;
    left: 6px;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

  .demo-button {
    position: fixed;
    left: 18px;
    bottom: 24px;
    z-index: 31;
    display: inline-flex;
    width: min(calc(82vw - 36px), 294px);
    margin: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-105%);
    transition: transform 240ms ease, opacity 180ms ease;
  }

  .nav-toggle:checked ~ .demo-button {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 96px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(40px, 12vw, 62px);
  }

  .hero-content {
    margin-top: 100px;
    margin-left: min(20px, 5vw);
  }

  .product-stage {
    justify-self: center;
    margin: 86px -34vw 0 -22vw;
    transform: none;
  }

  .product-stage img {
    width: 108vw;
  }

  .price-card {
    bottom: 32px;
    left: 50%;
    min-width: min(90vw, 280px);
    transform: translateX(-50%);
  }

  .home-strip {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 0;
  }

  .home-card {
    grid-template-columns: 58px 1fr;
    min-height: 0;
  }

  .home-icon {
    width: 48px;
    height: 48px;
  }

  .features {
    margin-top: 0;
    padding: 165px 10px 44px;
  }

  .panel-view {
    padding: 160px 10px 44px;
  }

  .sponsors-view {
    padding: 160px 10px 44px;
  }

  .pricing-view {
    padding: 160px 10px 44px;
  }

  .sponsors-hero {
    margin-bottom: 26px;
    padding: 16px;
    text-align: left;
  }

  .pricing-hero {
    margin-bottom: 26px;
    padding: 16px;
    text-align: left;
  }

  .sponsors-hero h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .pricing-hero h2 {
    font-size: clamp(34px, 9.5vw, 50px);
  }

  .sponsors-hero p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

  .pricing-hero p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-plan {
    min-height: 0;
    padding: 22px 18px;
  }

  .pricing-plan h3 {
    font-size: 32px;
  }

  .plan-subtitle {
    min-height: 0;
  }

  .plan-price strong {
    font-size: clamp(50px, 15vw, 72px);
  }

  .sponsor-card,
  .sponsor-card-wide,
  .sponsor-card-highlight {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px 18px;
  }

  .sponsor-card h3 {
    font-size: 24px;
  }

  .sponsor-number {
    font-size: 48px;
  }

  .panel-hero {
    margin-bottom: 26px;
    padding: 16px;
    text-align: left;
  }

  .panel-hero h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .panel-hero p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

  .panel-showcase {
    gap: 18px;
  }

  .panel-tab-list {
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px;
  }

  .panel-tab-list label {
    flex: 1;
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
    text-align: center;
  }

  .panel-section-title {
    margin-bottom: 0;
    padding: 14px 16px;
    text-align: left;
  }

  .panel-section-title h3 {
    font-size: 42px;
  }

  .panel-section-title p {
    margin-left: 0;
    font-size: 14px;
  }

  .panel-card {
    min-height: 0;
    padding: 18px;
  }

  .panel-number {
    margin-bottom: 14px;
    font-size: 44px;
  }

  .panel-copy h3 {
    font-size: 28px;
  }

  .panel-line {
    margin: 16px 0;
  }

  .panel-copy p {
    font-size: 14px;
  }

  .panel-zoom,
  .panel-zoom img {
    border-radius: 6px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .feature-card h3 {
    min-height: 0;
    margin-top: 20px;
    font-size: 24px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card strong {
    margin-top: 28px;
  }

  .feature-icon {
    width: 88px;
    height: 88px;
  }

  .cloud::before {
    bottom: 19px;
    height: 39px;
    border-width: 6px;
  }

  .cloud::after {
    top: 13px;
    left: 22px;
    width: 42px;
    height: 42px;
    border-width: 6px;
  }

  .design::before {
    top: 18px;
    left: 7px;
    width: 60px;
    height: 45px;
    border-width: 6px;
  }

  .design::after {
    right: 8px;
    bottom: 13px;
    height: 53px;
    width: 10px;
  }

  .app::before {
    left: 23px;
    width: 44px;
    height: 70px;
    border-width: 6px;
  }

  .app::after {
    top: 36px;
    width: 30px;
    height: 30px;
  }

  .refresh::before,
  .refresh::after {
    width: 52px;
    height: 52px;
    border-width: 6px;
  }

  .refresh::before {
    top: 10px;
  }

  .refresh::after {
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .main-nav a {
    font-size: 12px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .panel-view {
    padding-top: 146px;
  }

  .panel-kicker {
    font-size: 16px;
  }

  .panel-copy h3 {
    font-size: 25px;
  }

  .demo-button {
    width: min(calc(82vw - 36px), 294px);
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 92px;
  }

  .hero-text {
    font-size: 16px;
  }

  .product-stage {
    margin-top: 72px;
    margin-right: -34vw;
    margin-left: -26vw;
  }

  .product-stage img {
    width: 116vw;
  }

  .price-card {
    bottom: 24px;
    min-width: min(78vw, 210px);
    padding: 10px 14px;
  }

  .price-card strong {
    font-size: 32px;
  }
}
