html,body{margin:0!important;padding:0!important;overflow-x:hidden!important;max-width:100vw!important;}
*{box-sizing:border-box;}
[class*="c-column"],[class*="c-row"],[class*="c-section"],[class*="col-"],[class*="row-"],[class*="section-"]{padding:0!important;margin:0!important;max-width:100%!important;width:100%!important;}

:root {
  --pf-dark: #09090b;
  --pf-primary: #0057A8;
  --pf-accent: #F5A623;
  --pf-text: rgba(255,255,255,0.75);
  --pf-muted: rgba(255,255,255,0.45);
  --pf-border: rgba(0,87,168,0.20);
  --pf-font-body: 'Inter', sans-serif;
  --pf-font-head: 'Space Grotesk', sans-serif;
  --pf-nav-h: 80px;
}

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

body, p, label, input, textarea, button { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }

.pf-page { padding-top: 80px; }

.pf-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes pf-anim-t {
  0%   { transform: translate(-55%); }
  100% { transform: translate(55%); }
}
@keyframes pf-anim-o {
  0%, 100% { opacity: 0; }
  15%       { opacity: 1; }
  65%       { opacity: 0; }
}

.pf-anim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 60px;
  padding: 0 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgb(26,26,26) 0%, rgb(10,10,10) 100%);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 0 20px rgba(245,166,35,0.1);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pf-anim-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    0 0 30px rgba(245,166,35,0.2);
}

.pf-anim-loader {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: transparent;
  -webkit-mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, black 7px, black 8px);
  mask: repeating-linear-gradient(90deg, transparent 0, transparent 6px, black 7px, black 8px);
}

.pf-anim-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, #F5A623 0%, transparent 50%),
    radial-gradient(circle at 45% 45%, #F5A623 0%, transparent 45%),
    radial-gradient(circle at 55% 55%, rgba(245,166,35,0.53) 0%, transparent 45%),
    radial-gradient(circle at 45% 55%, rgba(245,166,35,0.67) 0%, transparent 45%),
    radial-gradient(circle at 55% 45%, rgba(245,166,35,0.80) 0%, transparent 45%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 10%, black 25%);
  mask: radial-gradient(circle at 50% 50%, transparent 0%, transparent 10%, black 25%);
  animation: pf-anim-t 2s infinite alternate, pf-anim-o 4s infinite;
  animation-timing-function: cubic-bezier(0.6,0.8,0.5,1);
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.6));
}

.pf-anim-text {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  user-select: none;
  color: #fff;
  text-shadow:
    0 0 12px rgba(245,166,35,0.27),
    0 0 4px  rgba(245,166,35,0.13);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.pf-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 1.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(0,87,168,0.35);
  border-radius: 9999px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.pf-btn-secondary:hover {
  border-color: rgba(0,87,168,0.7);
  background: rgba(0,87,168,0.08);
  color: #fff;
}

.pf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pf-reveal.pf-visible {
  opacity: 1;
  transform: translateY(0);
}

.pf-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 12px;
}

.pf-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,87,168,0.35), transparent);
  border: none;
  margin: 0;
}

.pf-section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.pf-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 600px;
}

.pf-text-center { text-align: center; }
.pf-text-center .pf-section-sub { margin-left: auto; margin-right: auto; }

.pf-bg-dots { background: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px) center/24px 24px, #09090b; }
.pf-bg-glow { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,87,168,0.12) 0%, transparent 60%), #09090b; }
.pf-bg-lines { background: repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 60px), #09090b; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1a1a2e inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
