:root{
  --accent: #b10000;
  --accentHot: #d00000; /* used for primary hover pop */
  --ink: #ffffff;
  --hair: rgba(255,255,255,.75);

  --max: 430px;
  --padX: clamp(18px, 4vw, 28px);
  --space: clamp(14px, 2.2vw, 22px);
  --rowH: 78px;

  --ff-head: "Fjalla One", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --ff-sub: "Barlow", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  --h2-size: 20px; 
  --h2-lh: 25px;
  --label-size: 15px; 
  --label-lh: 19px;
  --rhs-size: 12px; 
  --rhs-lh: 19px;
}

* { box-sizing:border-box; }
html, body { min-height: 100%; }

body{
  margin:0;
  min-height: 100vh;
  background: linear-gradient(180deg, #181D1F 0%, #000000 100%);
  /*background: url("bg-desktop.webp") center 0 no-repeat; 
  background-size: cover;*/
 /* background: #000 url("bg-test.png") center 0 no-repeat;*/
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
}
body.blank {
  background: linear-gradient(180deg, #181D1F 0%, #000000 100%);
}

main{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 72px) var(--padX) 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space);
}

.brand{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.logo{
  width: min(300px, 72vw);
  height:auto;
  display:block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.6));
}

.location{
  font-family: var(--ff-head);
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .75;
}

.section{
  width:100%;
  margin-top: 6px;
}


.section-title{
  margin: 22px 0 14px;
  text-align:center;
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  text-transform: uppercase;
  color: var(--ink);
}

/* Primary button + sexy hover */
.primary{
  width:100%;
  display:block;
  text-decoration:none;
  text-align:center;
  padding: 18px 16px;

  background: var(--accent);
  color: #fff;

  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  -webkit-tap-highlight-color: transparent;

  position: relative;
  overflow: hidden;

  transition: transform 120ms ease, filter 120ms ease, background-color 120ms ease;
}

/* sheen sweep */
.primary::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transform: rotate(18deg);
  opacity: 0;
  pointer-events:none;
}

.primary:hover{
  background: var(--accentHot);
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 24px rgba(208,0,0,.16));
}
.primary:hover::after{
  opacity: 1;
  animation: sheen 420ms ease-out forwards;
}
@keyframes sheen{
  to{ left: 120%; }
}

.primary:active{
  transform: translateY(1px);
  filter:none;
}
.primary:focus-visible{
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}

.list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.row{
  width: 100%;
  min-height: var(--rowH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  /*box-shadow: 0 20px 45px rgba(0,0,0,.35);*/ /* kinda tacky */ 
  -webkit-tap-highlight-color: transparent;
  /* white -> red */
  transition: 
  	color 100ms ease-in, 
	background-color 100ms ease-in,
	transform 100ms ease-in;
	/* border-color 100ms linear */
}

.row.ctr {
	display: flex;
	align-items: center;
	text-align: center;
}


.row-left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.icon{
  width:18px;
  height:18px;
  flex: 0 0 18px;
  display:block;
  opacity: .95;

  /* icon recolor */
  transition: filter 50ms linear, opacity 50ms linear;
}

/* map white icons to red - make sure SVGs are white on transparent bgs */
.row:hover .icon,
.row.white .icon,
.row:active .icon{
  filter: brightness(0) saturate(100%) invert(10%) sepia(95%) saturate(6500%) hue-rotate(2deg) brightness(92%) contrast(110%);
  opacity: 1;
}

.label{
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: var(--label-size);
  line-height: var(--label-lh);
  text-transform: uppercase;
  color: currentColor;
  white-space: nowrap;
}

.rhs{
  margin-left:auto;
  font-family: var(--ff-sub);
  font-weight: 400;
  font-size: var(--rhs-size);
  line-height: var(--rhs-lh);
  text-align: right;
  color: currentColor;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  max-width: 52%;
  opacity: .95;
  transition: opacity 50ms linear;
}

/* Desktop hover */
.row:hover, .row.white{
  color: var(--accent);
  /*border-color: var(--accent);*/
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.row:hover .rhs, .row.white .rhs{ opacity: 1; }

/* Mobile touch feedback */
.row:active{
  color: var(--accent);
  /*border-color: var(--accent);*/
  transform: translateY(1px);
}
.row:active .rhs{ opacity: 1; }

.row:focus-visible{
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}

@media (max-width: 380px){
  .rhs{ max-width: 48%; }
  .row{ padding: 14px 14px; gap: 12px; }
}




/* ---------- Two-button gate page ---------- */

.copy{
  font-family: var(--ff-head);
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .02em;
}

/* shared button base */
.btn{
  flex: 1;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 16px 14px;

  font-family: var(--ff-head);
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;

  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;

  position: relative;
  overflow: hidden;

  transition:
    background-color 120ms ease,
    color 120ms ease,
    transform 120ms ease,
    box-shadow 120ms ease;
}

/* red button (continue) */
.btn-primary{
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
}

.btn-primary:hover{
  background: var(--accentHot);
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(208,0,0,.18);
}

.btn-primary:active{
  transform: translateY(1px);
}

/* white button (back) */
.btn-secondary{
  background: #ffffff;
  color: #000000;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.btn-secondary:hover{
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}

.btn-secondary:active{
  transform: translateY(1px);
}

/* button layout */
.button-row{
  width: 100%;
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.body-content {
    font-family: var(--ff-sub);
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: center;
    color: #eee;
/*	text-transform: uppercase;*/
}
.body-content.fade{
  opacity: 0;
  animation: bodyFadeIn 500ms ease-out forwards;
}

@keyframes bodyFadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

/* stack buttons on very small screens */
@media (max-width: 360px){
  .button-row{
    flex-direction: column;
  }
}

/* reduced motion support */
@media (prefers-reduced-motion: reduce){
  .row, .icon, .rhs, .primary{ transition: none !important; }
  .primary::after{ animation: none !important; opacity: 0 !important; }
  .btn{ transition: none !important; }
}