*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body { margin: 0; }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }

button, input, textarea, select { font: inherit; color: inherit; }

button { border: 0; padding: 0; background: transparent; cursor: pointer; }

fieldset { border: 0; margin: 0; padding: 0; }

:focus { outline: none; }

:focus-visible { outline: 2px solid rgba(255,255,255,.55); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root{
  --ptt-font-ui: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ptt-font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;

  --ptt-ink: #07152A;
  --ptt-snow: #FFFFFF;

  --ptt-radius-xl: 22px;
  --ptt-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.18);
}

body{
  font-family: var(--ptt-font-ui);
  background: var(--ptt-ink);
  color: var(--ptt-snow);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection{
  background: rgba(255,255,255,.22);
}

.ptt-navveil{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 42, .58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.ptt-navveil__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.ptt-brandmark{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  white-space: nowrap;
}

.ptt-brandmark__core,
.ptt-brandmark__glint,
.ptt-brandmark__tail{
  font-family: var(--ptt-font-display);
  letter-spacing: .02em;
  line-height: 1;
}

.ptt-brandmark__core{
  font-weight: 650;
  font-size: 18px;
  opacity: .92;
}

.ptt-brandmark__glint{
  font-weight: 750;
  font-size: 20px;
  position: relative;
  padding: 2px 10px 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.ptt-brandmark__glint::after{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(120px 26px at 30% 30%, rgba(255,255,255,.30), transparent 60%);
  opacity: .85;
}

.ptt-brandmark__tail{
  font-weight: 500;
  font-size: 18px;
  opacity: .86;
}

.ptt-midnav{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.10);
}

.ptt-midnav__link{
  font-family: var(--ptt-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 10px 14px;
  border-radius: 999px;
  opacity: .86;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.ptt-midnav__link:hover{
  opacity: 1;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.ptt-midnav__link.is-current{
  opacity: 1;
  background: rgba(255,255,255,.12);
}

.ptt-navactions{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.ptt-navactions__ghost,
.ptt-navactions__solid{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: 10px 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.ptt-navactions__ghost{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.ptt-navactions__ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
}

.ptt-navactions__solid{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.ptt-navactions__solid:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
}

.ptt-burgerpulse{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, background .15s ease;
}

.ptt-burgerpulse:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }

.ptt-burgerpulse__lines{
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.ptt-burgerpulse__lines::before,
.ptt-burgerpulse__lines::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.92);
}

.ptt-burgerpulse__lines::before{ top: 1px; }
.ptt-burgerpulse__lines::after{ bottom: 1px; }

.ptt-mobidrawer{
  position: fixed;
  inset: 0;
  z-index: 60;
}

.ptt-mobidrawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.ptt-mobidrawer__panel{
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7, 21, 42, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  overflow: hidden;
}

.ptt-mobidrawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.ptt-mobidrawer__title{
  font-weight: 800;
  letter-spacing: .02em;
}

.ptt-mobidrawer__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.ptt-mobidrawer__grid{
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ptt-mobidrawer__link{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 750;
  letter-spacing: .01em;
}

.ptt-mobidrawer__link.is-current{
  background: rgba(255,255,255,.12);
}

.ptt-mobidrawer__link--accent{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.16);
}

.ptt-horizonhero{
  position: relative;
  min-height: clamp(420px, 56vh, 620px);
  display: grid;
  align-items: center;
  overflow: clip;
  text-align: center;
}

.ptt-horizonhero__bg{
  position: absolute;
  inset: 0;
  background-image: url("../images/ptt-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.ptt-horizonhero__shade{
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 50% 18%, rgba(0,0,0,.62), transparent 62%), linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.64));
}

.ptt-horizonhero__shell{
  position: relative;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 4.2vw, 56px) 0;
}

.ptt-horizonhero__center{
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.ptt-horizonhero__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.07;
  font-size: clamp(30px, 4.0vw, 50px);
}

.ptt-horizonhero__subtitle{
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  opacity: .92;
  max-width: 68ch;
}

.ptt-horizonhero__cta{
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ptt-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 850;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.ptt-cta--primary{
  background: rgba(255,255,255,.18);
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}

.ptt-cta--secondary{
  background: rgba(255,255,255,.08);
}

.ptt-cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.22);
}

.ptt-horizonhero__trust{
  margin-top: 4px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ptt-horizonhero__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
}

@media (max-width: 980px){
  .ptt-navveil__shell{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand actions"
      "nav nav";
    padding: 10px 0 12px 0;
  }

  .ptt-brandmark{ grid-area: brand; }
  .ptt-navactions{ grid-area: actions; }

  .ptt-midnav{
    grid-area: nav;
    justify-content: flex-start;
    border-radius: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ptt-midnav::-webkit-scrollbar{ display: none; }
}

@media (max-width: 720px){
  .ptt-midnav{ display: none; }
  .ptt-navactions__ghost,
  .ptt-navactions__solid{ display: none; }
  .ptt-burgerpulse{ display: inline-flex; align-items: center; justify-content: center; }
}

.ptt-drawdeck{
  padding: clamp(44px, 5.4vw, 72px) 0;
  background:
    radial-gradient(900px 460px at 18% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 420px at 86% 16%, rgba(255,255,255,.05), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}

.ptt-drawdeck__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ptt-drawdeck__head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 26px auto;
  display: grid;
  gap: 10px;
}

.ptt-drawdeck__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.1;
  font-size: clamp(26px, 3.0vw, 40px);
}

.ptt-drawdeck__lead{
  opacity: .9;
  line-height: 1.7;
  font-size: 16px;
}

.ptt-drawdeck__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ptt-drawcard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 56px rgba(0,0,0,.24);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ptt-drawcard:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}

.ptt-drawcard__media{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ptt-drawcard__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.36));
  pointer-events: none;
}

.ptt-drawcard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ptt-drawcard__body{
  padding: 18px 18px 14px 18px;
  display: grid;
  gap: 10px;
}

.ptt-drawcard__name{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.12;
  font-size: 20px;
}

.ptt-drawcard__text{
  opacity: .9;
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}

.ptt-drawcard__foot{
  padding: 0 18px 18px 18px;
}

.ptt-drawcard__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 850;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  transition: transform .15s ease, background .15s ease;
}

.ptt-drawcard__cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}

@media (max-width: 980px){
  .ptt-drawdeck__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ptt-drawcard__media{
    aspect-ratio: 16 / 9;
  }
}

.ptt-flowribbon{
  padding: clamp(44px, 5.4vw, 74px) 0;
  background:
    radial-gradient(860px 420px at 18% 0%, rgba(255,255,255,.055), transparent 62%),
    radial-gradient(720px 420px at 88% 18%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, rgba(6,18,36,1), rgba(7,21,42,1));
}

.ptt-flowribbon__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ptt-flowribbon__head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 22px auto;
  display: grid;
  gap: 10px;
}

.ptt-flowribbon__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.1;
  font-size: clamp(26px, 3.0vw, 40px);
}

.ptt-flowribbon__lead{
  opacity: .9;
  line-height: 1.7;
  font-size: 16px;
}

.ptt-flowribbon__track{
  width: min(980px, 100%);
  margin: 0 auto 16px auto;
  padding: 0 12px;
}

.ptt-flowribbon__line{
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.22), rgba(255,255,255,.06));
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  opacity: .9;
}

.ptt-flowribbon__steps{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ptt-flowribbon__step{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 56px rgba(0,0,0,.22);
  padding: 14px 14px 14px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ptt-flowribbon__step:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}

.ptt-flowribbon__badge{
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 54px;
}

.ptt-flowribbon__num{
  width: 44px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .02em;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.ptt-flowribbon__glyph{
  width: 44px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.12);
  opacity: .95;
}

.ptt-flowribbon__content{
  display: grid;
  gap: 6px;
  padding-right: 6px;
}

.ptt-flowribbon__name{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.12;
  font-size: 16px;
}

.ptt-flowribbon__text{
  opacity: .9;
  line-height: 1.55;
  font-size: 13.5px;
}

@media (max-width: 1060px){
  .ptt-flowribbon__steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ptt-flowribbon__track{
    width: min(760px, 100%);
  }
}

@media (max-width: 640px){
  .ptt-flowribbon__track{
    display: none;
  }

  .ptt-flowribbon__steps{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ptt-flowribbon__step{
    border-radius: 22px;
    grid-template-columns: auto 1fr;
    padding: 16px;
    position: relative;
  }

  .ptt-flowribbon__step::before{
    content: "";
    position: absolute;
    left: 18px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    border-radius: 99px;
    background: rgba(255,255,255,.14);
    opacity: .75;
  }

  .ptt-flowribbon__badge{
    width: 58px;
    position: relative;
    z-index: 1;
  }
}

.ptt-meritfield{
  padding: clamp(44px, 5.4vw, 74px) 0;
  background:
    radial-gradient(820px 420px at 14% 10%, rgba(255,255,255,.05), transparent 62%),
    radial-gradient(760px 420px at 86% 30%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}

.ptt-meritfield__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ptt-meritfield__head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 26px auto;
  display: grid;
  gap: 10px;
}

.ptt-meritfield__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.1;
  font-size: clamp(26px, 3.0vw, 40px);
}

.ptt-meritfield__lead{
  opacity: .9;
  line-height: 1.7;
  font-size: 16px;
}

.ptt-meritfield__grid{
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ptt-meritbite{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 56px rgba(0,0,0,.20);
  padding: 16px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ptt-meritbite:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.ptt-meritbite__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
}

.ptt-meritbite__icon i{
  font-size: 18px;
  opacity: .95;
}

.ptt-meritbite__text{
  display: grid;
  gap: 6px;
}

.ptt-meritbite__name{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.15;
  font-size: 18px;
}

.ptt-meritbite__desc{
  opacity: .9;
  line-height: 1.65;
  font-size: 14.5px;
}

@media (max-width: 820px){
  .ptt-meritfield__grid{
    grid-template-columns: 1fr;
  }
}

.ptt-responsibility{
  padding: clamp(40px, 5vw, 68px) 0;
  background: linear-gradient(180deg, rgba(6,18,36,1), rgba(7,21,42,1));
}

.ptt-responsibility__shell{
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.ptt-responsibility__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 16px;
}

.ptt-responsibility__text{
  font-size: 15.5px;
  line-height: 1.7;
  opacity: .9;
  max-width: 72ch;
  margin: 0 auto 12px auto;
}

.ptt-footer{
  padding: clamp(52px, 5.8vw, 86px) 0 34px 0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #041022 0%, #020915 55%, #010610 100%);
  border-top: 1px solid rgba(255,255,255,.10);
}

.ptt-footer__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.ptt-footer__legal{
  max-width: 980px;
}

.ptt-footer__legal-title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  font-size: 20px;
  margin: 0 0 12px 0;
}

.ptt-footer__legal-copy{
  font-size: 14.8px;
  line-height: 1.75;
  opacity: .9;
  display: grid;
  gap: 10px;
}

.ptt-footer__legal-copy a{
  text-decoration: underline;
}

.ptt-footer__links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.ptt-footer__links a{
  padding: 8px 10px;
  border-radius: 999px;
  opacity: .92;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.ptt-footer__links a:hover{
  opacity: 1;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.ptt-footer__partners{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.ptt-footer__partners a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  filter: brightness(0) invert(1);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.ptt-footer__partners a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.ptt-footer__partners img{
  height: 34px;
  width: auto;
  opacity: .92;
}

.ptt-footer__copy{
  font-size: 13px;
  opacity: .72;
  margin-top: 4px;
}

@media (max-width: 520px){
  .ptt-footer__partners img{ height: 30px; }
  .ptt-footer__links{ width: 100%; }
}

[hidden]{ display: none !important; }

.ptt-cookieglide{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.ptt-cookieglide__card{
  width: min(880px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 16, 34, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 90px rgba(0,0,0,.42);
  padding: 18px;
  display: grid;
  gap: 10px;
  pointer-events: auto;

  text-align: center;
  justify-items: center;
}

.ptt-cookieglide__cap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ptt-cookieglide__ico{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.ptt-cookieglide__title{
  font-family: var(--ptt-font-display);
  font-weight: 750;
  letter-spacing: .01em;
  font-size: 18px;
}

.ptt-cookieglide__text{
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
  max-width: 78ch;
}

.ptt-cookieglide__text a{ text-decoration: underline; }

.ptt-cookieglide__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.16);
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .15s ease, background .15s ease;
}

.ptt-cookieglide__btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.20);
}

.ptt-ageveil{
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.ptt-ageveil__shade{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  pointer-events: none;
}

.ptt-ageveil__card{
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 16, 34, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 18px 18px 16px;
  display: grid;
  gap: 14px;

  text-align: center;
  justify-items: center;
}

.ptt-ageveil__top{
  display: grid;
  gap: 12px;
  justify-items: center;
}

.ptt-ageveil__badge{
  width: 70px;
  height: 70px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
}

.ptt-ageveil__badge-num{
  font-family: var(--ptt-font-display);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 18px;
}

.ptt-ageveil__head{ display: grid; gap: 6px; }

.ptt-ageveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 20px;
}

.ptt-ageveil__subtitle{
  opacity: .9;
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 60ch;
}

.ptt-ageveil__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(520px, 100%);
}

.ptt-ageveil__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .15s ease, filter .15s ease;
}

.ptt-ageveil__btn--ok{
  background: rgba(42, 176, 122, .20);
  border-color: rgba(42, 176, 122, .40);
}

.ptt-ageveil__btn--no{
  background: rgba(214, 74, 82, .18);
  border-color: rgba(214, 74, 82, .38);
}

.ptt-ageveil__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.ptt-ageveil__note{
  opacity: .82;
  line-height: 1.55;
  font-size: 13.5px;
  max-width: 70ch;
}

@media (max-width: 520px){
  .ptt-cookieglide__btn{ width: 100%; }
  .ptt-ageveil__actions{ grid-template-columns: 1fr; }
}

.ptt-aboutreef{
  padding: clamp(30px, 4.1vw, 62px) 0 clamp(44px, 5vw, 80px);
  background:
    radial-gradient(900px 520px at 18% 6%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(760px 520px at 84% 18%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}

.ptt-aboutreef__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ptt-aboutreef__crumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.ptt-aboutreef__crumb{
  font-weight: 900;
  letter-spacing: .01em;
  opacity: .95;
}

.ptt-aboutreef__sep{
  opacity: .65;
}

.ptt-aboutreef__here{
  opacity: .88;
  font-weight: 800;
}

.ptt-aboutreef__hero{
  margin-top: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(760px 360px at 18% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(720px 380px at 92% 30%, rgba(255,255,255,.06), transparent 62%),
    rgba(255,255,255,.04);
  box-shadow: 0 24px 90px rgba(0,0,0,.28);
  padding: clamp(18px, 3.2vw, 34px);
}

.ptt-aboutreef__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  opacity: .9;
  width: 100%;
}

.ptt-aboutreef__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

.ptt-aboutreef__title{
  font-family: var(--ptt-font-display);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.06;
  font-size: clamp(28px, 3.6vw, 52px);
  margin: 14px 0 10px;
  text-align: center;
}

.ptt-aboutreef__subtitle{
  max-width: 78ch;
  margin: 0 auto;
  text-align: center;
  opacity: .92;
  line-height: 1.72;
  font-size: 16px;
}

.ptt-aboutreef__heroGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  margin-top: 18px;
  align-items: start;
}

.ptt-aboutreef__story,
.ptt-aboutreef__aside{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
  padding: 18px;
}

.ptt-aboutreef__h2{
  font-family: var(--ptt-font-display);
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 10px;
}

.ptt-aboutreef__h2--center{
  text-align: center;
}

.ptt-aboutreef__p{
  opacity: .92;
  line-height: 1.85;
  font-size: 15.5px;
  margin-bottom: 12px;
}

.ptt-aboutreef__callout{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.14));
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.ptt-aboutreef__callBadge{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--ptt-font-display);
  font-weight: 900;
  letter-spacing: .02em;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.ptt-aboutreef__callText{
  margin: 0;
  opacity: .9;
  line-height: 1.7;
  font-size: 14.5px;
}

.ptt-aboutreef__pillSet{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ptt-aboutreef__pill{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  padding: 12px 12px;
  display: grid;
  gap: 8px;
}

.ptt-aboutreef__pillTop{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ptt-aboutreef__pillIcon{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.ptt-aboutreef__pillName{
  font-weight: 900;
  letter-spacing: .01em;
}

.ptt-aboutreef__pillDesc{
  margin: 0;
  opacity: .9;
  line-height: 1.7;
  font-size: 14.5px;
}

.ptt-aboutreef__miniNote{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
  text-align: center;
}

.ptt-aboutreef__miniText{
  margin: 0;
  opacity: .88;
  line-height: 1.7;
  font-size: 14.5px;
}

.ptt-aboutreef__wide{
  margin-top: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 26px);
}

.ptt-aboutreef__wideHead{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 14px auto;
  display: grid;
  gap: 8px;
}

.ptt-aboutreef__wideLead{
  margin: 0;
  opacity: .9;
  line-height: 1.7;
  font-size: 15px;
}

.ptt-aboutreef__lanes{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ptt-aboutreef__lane{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.ptt-aboutreef__laneIcon{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}

.ptt-aboutreef__laneTitle{
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 4px;
}

.ptt-aboutreef__laneText{
  opacity: .9;
  line-height: 1.65;
  font-size: 14.5px;
}

@media (max-width: 980px){
  .ptt-aboutreef__heroGrid{ grid-template-columns: 1fr; }
  .ptt-aboutreef__crumbs{ justify-content: center; width: 100%; }
}

@media (max-width: 900px){
  .ptt-aboutreef__lanes{ grid-template-columns: 1fr; }
}

.ptt-legalharbor{
  padding: clamp(30px, 4.1vw, 62px) 0 clamp(44px, 5vw, 80px);
  background:
    radial-gradient(900px 520px at 18% 6%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(760px 520px at 84% 18%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}

.ptt-legalharbor__shell{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ptt-legalharbor__crumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.ptt-legalharbor__crumb{
  font-weight: 900;
  letter-spacing: .01em;
  opacity: .95;
}

.ptt-legalharbor__sep{ opacity: .65; }
.ptt-legalharbor__here{ opacity: .88; font-weight: 800; }

.ptt-legalharbor__hero{
  margin-top: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(760px 360px at 18% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(720px 380px at 92% 30%, rgba(255,255,255,.06), transparent 62%),
    rgba(255,255,255,.04);
  box-shadow: 0 24px 90px rgba(0,0,0,.28);
  padding: clamp(18px, 3.2vw, 34px);
  text-align: center;
}

.ptt-legalharbor__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  opacity: .9;
}

.ptt-legalharbor__tagdot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

.ptt-legalharbor__title{
  font-family: var(--ptt-font-display);
  font-weight: 850;
  letter-spacing: .01em;
  line-height: 1.06;
  font-size: clamp(30px, 3.6vw, 52px);
  margin: 12px 0 8px;
}

.ptt-legalharbor__lead{
  max-width: 86ch;
  margin: 0 auto;
  opacity: .92;
  line-height: 1.75;
  font-size: 15.8px;
}

.ptt-legalharbor__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.ptt-legalharbor__metaItem{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  opacity: .92;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.ptt-legalharbor__card{
  margin-top: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 26px);
}

.ptt-legalharbor__h2{
  font-family: var(--ptt-font-display);
  font-weight: 850;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 10px;
}

.ptt-legalharbor__h3{
  font-weight: 900;
  letter-spacing: .01em;
  margin: 14px 0 8px;
  font-size: 15.5px;
  opacity: .98;
}

.ptt-legalharbor__p{
  opacity: .92;
  line-height: 1.85;
  font-size: 15.2px;
  margin-bottom: 10px;
}

.ptt-legalharbor__link{
  text-decoration: underline;
  font-weight: 900;
}

.ptt-legalharbor__list{
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ptt-legalharbor__list li{
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  line-height: 1.7;
  opacity: .92;
}

.ptt-legalharbor__note{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.14));
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.ptt-legalharbor__note i{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  opacity: .95;
}

.ptt-legalharbor__note p{
  margin: 0;
  opacity: .92;
  line-height: 1.75;
}

.ptt-legalharbor__end{
  margin-top: 14px;
  text-align: center;
  opacity: .86;
  line-height: 1.7;
}

@media (max-width: 980px){
  .ptt-legalharbor__crumbs{ justify-content: center; width: 100%; }
}

.ptt-tixforge{
  padding: clamp(30px, 4.2vw, 62px) 0 clamp(44px, 5vw, 80px);
  background:
    radial-gradient(900px 520px at 16% 8%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(760px 520px at 86% 18%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}
.ptt-tixforge__shell{ width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.ptt-tixforge__top{ text-align: center; }
.ptt-tixforge__crumbs{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
}
.ptt-tixforge__crumb{ font-weight: 900; letter-spacing: .01em; opacity: .95; }
.ptt-tixforge__sep{ opacity: .65; }
.ptt-tixforge__here{ opacity: .88; font-weight: 800; }

.ptt-tixforge__title{
  font-family: var(--ptt-font-display);
  font-weight: 850; letter-spacing: .01em; line-height: 1.08;
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 14px 0 10px;
}
.ptt-tixforge__subtitle{
  max-width: 84ch; margin: 0 auto;
  opacity: .92; line-height: 1.75; font-size: 15.6px;
}

.ptt-tixforge__layout{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 14px;
  align-items: start;
}

.ptt-tixforge__left,
.ptt-tixforge__right{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 22px);
}

.ptt-tixforge__stepcap{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  opacity: .95;
}
.ptt-tixforge__stepdot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,.44);
}
.ptt-tixforge__steptext{ font-weight: 800; letter-spacing: .01em; }

.ptt-tixforge__tabs{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.ptt-tixforge__tab{
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  font-weight: 900; letter-spacing: .01em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.ptt-tixforge__tab:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); }
.ptt-tixforge__tab.is-active{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.ptt-tixforge__panelWrap{ margin-top: 12px; }
.ptt-tixforge__panel{ display: none; }
.ptt-tixforge__panel.is-active{ display: block; }

.ptt-tixforge__panelHead{
  display: grid; gap: 6px;
  margin-bottom: 12px;
}
.ptt-tixforge__panelTitle{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ptt-font-display);
  font-weight: 850; letter-spacing: .01em;
  font-size: 18px;
}
.ptt-tixforge__panelRules{ opacity: .9; font-size: 14.5px; line-height: 1.6; }

.ptt-tixforge__actions{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.ptt-tixforge__chipBtn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  transition: transform .15s ease, background .15s ease;
}
.ptt-tixforge__chipBtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }

.ptt-tixforge__picked{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: 10px 12px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.ptt-tixforge__pickedLabel{ font-weight: 900; opacity: .92; }
.ptt-tixforge__pickedLine{ opacity: .92; letter-spacing: .01em; }

.ptt-tixforge__grid{
  display: grid;
  grid-template-columns: repeat(10, minmax(0,1fr));
  gap: 8px;
}
.ptt-tixforge__grid--grand{
  grid-template-columns: repeat(7, minmax(0,1fr));
}

.ptt-tixforge__num{
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
}
.ptt-tixforge__num:hover{ transform: translateY(-1px); background: rgba(255,255,255,.07); }
.ptt-tixforge__num.is-on{
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.22);
}
.ptt-tixforge__num.is-off{
  opacity: .38;
  pointer-events: none;
}

.ptt-tixforge__dual{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}
.ptt-tixforge__subBlock{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.ptt-tixforge__subTitle{
  font-weight: 950;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.ptt-tixforge__subMeta{ opacity: .75; font-weight: 800; }

.ptt-tixforge__addRow{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.ptt-tixforge__addBtn{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.10);
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.ptt-tixforge__addBtn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.ptt-tixforge__addBtn:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.ptt-tixforge__hint{ opacity: .78; font-size: 13.8px; line-height: 1.6; }

.ptt-tixforge__cartHead{
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.ptt-tixforge__cartTitle{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ptt-font-display);
  font-weight: 900;
}
.ptt-tixforge__cartMeta{ opacity: .9; font-weight: 900; }

.ptt-tixforge__cartList{ margin-top: 12px; display: grid; gap: 10px; }
.ptt-tixforge__empty{
  padding: 14px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  opacity: .86;
  line-height: 1.7;
}

.ptt-tixforge__item{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 12px;
  display: grid;
  gap: 10px;
}
.ptt-tixforge__itemTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ptt-tixforge__itemName{
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-tixforge__kill{
  width: 40px; height: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptt-tixforge__lines{
  display: grid;
  gap: 6px;
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
}
.ptt-tixforge__money{
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  font-weight: 950;
}
.ptt-tixforge__money span{ opacity: .85; font-weight: 850; }

.ptt-tixforge__checkout{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.12);
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.ptt-tixforge__checkout:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.ptt-tixforge__checkout:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.ptt-tixforge__rp{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: 12px;
  text-align: center;
}
.ptt-tixforge__rpTitle{
  font-family: var(--ptt-font-display);
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.ptt-tixforge__rpText{ opacity: .86; line-height: 1.7; font-size: 14.2px; }

.ptt-payveil, .ptt-doneveil{
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 18px;
}
.ptt-payveil__shade, .ptt-doneveil__shade{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
}
.ptt-payveil__card{
  position: relative; z-index: 2;
  width: min(760px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,34,.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 16px;
}
.ptt-payveil__cap{
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 14px;
}
.ptt-payveil__capLeft{ display: flex; align-items: center; gap: 12px; }
.ptt-payveil__badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 950;
}
.ptt-payveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-payveil__sub{ opacity: .85; font-size: 14px; line-height: 1.6; }

.ptt-payveil__x{
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ptt-payveil__form{ padding: 0 10px 10px; }
.ptt-payveil__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ptt-payveil__field{ display: grid; gap: 8px; }
.ptt-payveil__field--wide{ grid-column: 1 / -1; }
.ptt-payveil__label{ font-weight: 900; opacity: .92; }
.ptt-payveil__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  outline: none;
}
.ptt-payveil__input:focus{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.ptt-payveil__input option {
  color: #0D0D0D;
}

.ptt-payveil__check{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
}
.ptt-payveil__tick{ margin-top: 3px; }
.ptt-payveil__checkText{ opacity: .92; line-height: 1.65; }

.ptt-payveil__send{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.ptt-payveil__send:hover{ transform: translateY(-1px); filter: brightness(1.06); }

.ptt-payveil__msg{
  margin-top: 10px;
  min-height: 20px;
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
}
.ptt-payveil__msg.is-bad{ color: rgba(255,160,160,.95); }
.ptt-payveil__msg.is-ok{ color: rgba(160,255,205,.95); }

.ptt-payveil__fine{
  margin-top: 10px;
  opacity: .78;
  font-size: 13.6px;
  line-height: 1.6;
  text-align: center;
}

.ptt-doneveil__card{
  position: relative; z-index: 2;
  width: min(560px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,34,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 18px;
  text-align: center;
}
.ptt-doneveil__icon{
  width: 70px; height: 70px;
  border-radius: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(160,255,205,.10);
  border: 1px solid rgba(160,255,205,.22);
  margin-bottom: 10px;
  font-size: 22px;
}
.ptt-doneveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 6px;
}
.ptt-doneveil__text{ opacity: .9; line-height: 1.7; font-size: 14.8px; }
.ptt-doneveil__btn{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
}

[hidden]{ display: none !important; }

@media (max-width: 980px){
  .ptt-tixforge__layout{ grid-template-columns: 1fr; }
  .ptt-tixforge__tabs{ grid-template-columns: 1fr; }
  .ptt-tixforge__grid{ grid-template-columns: repeat(8, minmax(0,1fr)); }
  .ptt-tixforge__dual{ grid-template-columns: 1fr; }
  .ptt-payveil__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .ptt-tixforge__grid{ grid-template-columns: repeat(6, minmax(0,1fr)); }
}

.ptt-heliofax{
  padding: clamp(30px, 4.2vw, 62px) 0 clamp(44px, 5vw, 84px);
  background:
    radial-gradient(860px 540px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(760px 540px at 84% 18%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}
.ptt-heliofax__wrap{ width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.ptt-heliofax__top{ text-align: center; }
.ptt-heliofax__crumbs{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.ptt-heliofax__crumb{ font-weight: 900; letter-spacing: .01em; opacity: .95; }
.ptt-heliofax__sep{ opacity: .65; }
.ptt-heliofax__here{ opacity: .88; font-weight: 800; }

.ptt-heliofax__title{
  font-family: var(--ptt-font-display);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(28px, 3.1vw, 46px);
  margin: 14px 0 10px;
}
.ptt-heliofax__lead{
  max-width: 86ch;
  margin: 0 auto;
  opacity: .92;
  line-height: 1.75;
  font-size: 15.6px;
}

.ptt-heliofax__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

.ptt-heliofax__card{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 22px);
}

.ptt-heliofax__cap{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px 14px;
}
.ptt-heliofax__capIcon{
  width: 46px; height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptt-heliofax__capTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-heliofax__capSub{
  opacity: .82;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 2px;
}

.ptt-heliofax__fields{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ptt-heliofax__field{ display: grid; gap: 8px; }
.ptt-heliofax__field--wide{ grid-column: 1 / -1; }

.ptt-heliofax__label{ font-weight: 900; opacity: .92; }
.ptt-heliofax__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  outline: none;
}
.ptt-heliofax__input:focus{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.ptt-heliofax__input--area{
  resize: vertical;
  min-height: 150px;
}

.ptt-heliofax__send{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.ptt-heliofax__send:hover{ transform: translateY(-1px); filter: brightness(1.06); }
.ptt-heliofax__send:disabled{ opacity: .55; cursor: not-allowed; transform: none; }

.ptt-heliofax__msg{
  margin-top: 10px;
  min-height: 20px;
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
}
.ptt-heliofax__msg.is-bad{ color: rgba(255,160,160,.95); }
.ptt-heliofax__msg.is-ok{ color: rgba(160,255,205,.95); }

.ptt-heliofax__fine{
  margin-top: 10px;
  opacity: .78;
  font-size: 13.6px;
  line-height: 1.6;
  text-align: center;
}

.ptt-heliofax__list{ display: grid; gap: 10px; margin-top: 2px; }
.ptt-heliofax__row{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.ptt-heliofax__ico{
  width: 46px; height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptt-heliofax__k{ font-weight: 950; letter-spacing: .01em; }
.ptt-heliofax__v{ opacity: .9; line-height: 1.65; margin-top: 2px; }
a.ptt-heliofax__v{ font-weight: 900; text-decoration: none; }
@media (max-width: 420px) {a.ptt-heliofax__v.ptt-heliofax__v--email{font-size:10px}}

.ptt-heliofax__note{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: 12px;
  text-align: center;
}
.ptt-heliofax__noteTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.ptt-heliofax__noteText{ opacity: .86; line-height: 1.7; font-size: 14.2px; }

.ptt-thxveil{
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 18px;
}
.ptt-thxveil__shade{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
}
.ptt-thxveil__card{
  position: relative; z-index: 2;
  width: min(560px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,34,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 18px;
  text-align: center;
}
.ptt-thxveil__icon{
  width: 70px; height: 70px;
  border-radius: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(160,255,205,.10);
  border: 1px solid rgba(160,255,205,.22);
  margin-bottom: 10px;
  font-size: 22px;
}
.ptt-thxveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 6px;
}
.ptt-thxveil__text{ opacity: .9; line-height: 1.7; font-size: 14.8px; }
.ptt-thxveil__btn{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
}

@media (max-width: 980px){
  .ptt-heliofax__grid{ grid-template-columns: 1fr; }
  .ptt-heliofax__fields{ grid-template-columns: 1fr; }
}

.ptt-signalock{
  padding: clamp(30px, 4.2vw, 62px) 0 clamp(44px, 5vw, 84px);
  background:
    radial-gradient(860px 540px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(760px 540px at 84% 18%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}
.ptt-signalock__wrap{ width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.ptt-signalock__top{ text-align: center; }
.ptt-signalock__crumbs{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.ptt-signalock__crumb{ font-weight: 900; letter-spacing: .01em; opacity: .95; }
.ptt-signalock__sep{ opacity: .65; }
.ptt-signalock__here{ opacity: .88; font-weight: 800; }

.ptt-signalock__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(28px, 3.1vw, 46px);
  margin: 14px 0 10px;
}
.ptt-signalock__lead{
  max-width: 86ch;
  margin: 0 auto;
  opacity: .92;
  line-height: 1.75;
  font-size: 15.6px;
}

.ptt-signalock__grid{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.ptt-signalock__card{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 22px);
}

.ptt-signalock__cap{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px 14px;
}
.ptt-signalock__capIcon{
  width: 46px; height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptt-signalock__capTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-signalock__capSub{
  opacity: .82;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 2px;
}

.ptt-signalock__form{ padding: 0 10px 10px; display: grid; gap: 12px; }
.ptt-signalock__field{ display: grid; gap: 8px; }
.ptt-signalock__label{ font-weight: 900; opacity: .92; }
.ptt-signalock__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  outline: none;
}
.ptt-signalock__input:focus{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.ptt-signalock__minihint{
  opacity: .75;
  font-size: 13.4px;
  line-height: 1.6;
  margin-top: -2px;
}

.ptt-signalock__btn{
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.ptt-signalock__btn:hover{ transform: translateY(-1px); filter: brightness(1.06); }
.ptt-signalock__btn:disabled{ opacity: .55; cursor: not-allowed; transform: none; }

.ptt-signalock__msg{
  min-height: 20px;
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
}
.ptt-signalock__msg.is-bad{ color: rgba(255,160,160,.95); }
.ptt-signalock__msg.is-ok{ color: rgba(160,255,205,.95); }

.ptt-signalock__alt{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: .9;
}
.ptt-signalock__altLink{
  font-weight: 950;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.ptt-signalock__ghost{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  font-weight: 950;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.ptt-signalock__ghost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }

.ptt-signalock__fine{
  opacity: .78;
  font-size: 13.6px;
  line-height: 1.6;
  text-align: center;
}

.ptt-signalock__side{ }
.ptt-signalock__sideCard{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: clamp(16px, 2.8vw, 22px);
  box-shadow: 0 18px 70px rgba(0,0,0,.16);
}
.ptt-signalock__sideTop{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
}
.ptt-signalock__shield{
  width: 54px; height: 54px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
}
.ptt-signalock__sideTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-signalock__sideText{
  margin-top: 6px;
  opacity: .86;
  line-height: 1.7;
  font-size: 14.6px;
}
.ptt-signalock__sideRule{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
  text-align: center;
}
.ptt-signalock__sideRuleK{ font-weight: 950; letter-spacing: .01em; }
.ptt-signalock__sideRuleV{ margin-top: 6px; opacity: .86; line-height: 1.7; font-size: 14.2px; }

.ptt-logveil{
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 18px;
}
.ptt-logveil__shade{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
}
.ptt-logveil__card{
  position: relative; z-index: 2;
  width: min(560px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,34,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 18px;
  text-align: center;
}
.ptt-logveil__icon{
  width: 70px; height: 70px;
  border-radius: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(160,255,205,.10);
  border: 1px solid rgba(160,255,205,.22);
  margin-bottom: 10px;
  font-size: 22px;
}
.ptt-logveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 6px;
}
.ptt-logveil__text{ opacity: .9; line-height: 1.7; font-size: 14.8px; }
.ptt-logveil__btn{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
}

@media (max-width: 980px){
  .ptt-signalock__grid{ grid-template-columns: 1fr; }
}

.ptt-novareg{
  padding: clamp(30px, 4.2vw, 62px) 0 clamp(44px, 5vw, 84px);
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(10, 24, 50, .72) 0%, rgba(8, 14, 30, .82) 100%),
    url("/images/ptt-winter-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.ptt-novareg__wrap{ width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.ptt-novareg__top{ text-align: center; }
.ptt-novareg__crumbs{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.ptt-novareg__crumb{ font-weight: 900; letter-spacing: .01em; opacity: .95; }
.ptt-novareg__sep{ opacity: .65; }
.ptt-novareg__here{ opacity: .88; font-weight: 800; }

.ptt-novareg__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(28px, 3.1vw, 46px);
  margin: 14px 0 10px;
}
.ptt-novareg__lead{
  font-family: var(--ptt-font-display);
  font-weight: 900;
  max-width: 86ch;
  margin: 0 auto;
  padding: 8px 16px;
  opacity: .92;
  line-height: 1.75;
  font-size: 15.6px;
  width: fit-content;
  border-radius: 999px;
  background:
      linear-gradient(
          180deg,
          rgba(255,255,255,0.85),
          rgba(220,240,255,0.75)
      );
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
      0 6px 18px rgba(120,170,255,0.45),
      inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(2px);

}

.gift-text {
     text-shadow:
        0 0 8px rgba(180,220,255,0.8),
        0 2px 4px rgba(0,0,0,0.25);
    letter-spacing: 0.25px;
        background: linear-gradient(
        180deg,
        #2a6fd6,
        #5aa2ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gift-icon{
    margin-right: 6px;
    font-size: 14px;
}

.ptt-novareg__grid{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.ptt-novareg__card{
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.20);
  padding: clamp(16px, 2.8vw, 22px);
  background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(225, 240, 255, 0.55) 100%
        );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 20px 40px rgba(30, 60, 120, 0.25),
        inset 0 0 25px rgba(255,255,255,0.35),
        inset 0 -10px 20px rgba(200,220,255,0.35);
    overflow: hidden;
}

.ptt-novareg__card > * {
    position: relative;
    z-index: 2;
}

.ptt-novareg__cap{
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px 14px;
  color: #2c4f7d;
}
.ptt-novareg__capIcon{
  width: 46px; height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ptt-novareg__capTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-novareg__capSub{
  opacity: .82;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 2px;
}

.ptt-novareg__form{ padding: 0 10px 10px; display: grid; gap: 12px; }
.ptt-novareg__field{ display: grid; gap: 8px; }
.ptt-novareg__label{ font-weight: 900; opacity: .92; color: #2c4f7d; text-shadow: 0 0 8px rgba(180,220,255,0.85), 0 2px 3px rgba(0,0,0,0.3); }
.ptt-novareg__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  outline: none;
  border: 1px solid rgba(180, 205, 235, 0.8);
  background:
      linear-gradient(
          180deg,
          rgba(255,255,255,0.95),
          rgba(235,245,255,0.9)
      );
  box-shadow:
      inset 0 2px 4px rgba(255,255,255,0.7),
      inset 0 -2px 6px rgba(170,200,230,0.35),
      0 2px 6px rgba(60,100,160,0.15);
       color: #2a4a72;
  outline: none;
  transition: all .25s ease;
}

.ptt-novareg__field input::placeholder{
    color: rgba(80,120,170,.6);
    font-weight: 500;
}
.ptt-novareg__input:focus{
  border-color: rgba(255,255,255,.24);
}
.ptt-novareg__minihint{
  opacity: .75;
  font-size: 13.4px;
  line-height: 1.6;
  margin-top: -2px;
}

.ptt-novareg__btn{
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 950;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
    background:
        linear-gradient(
            180deg,
            #8fc3ff 0%,
            #4f8fe8 55%,
            #3a6fd6 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.55),
        inset 0 -2px 4px rgba(0,0,0,0.15),
        0 8px 20px rgba(60,120,220,0.45);
   color: #ffffff;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all .25s ease;
}
.ptt-novareg__btn:hover{ transform: translateY(-1px); background:
        linear-gradient(
            180deg,
            #9bd0ff 0%,
            #5a9af0 55%,
            #467ee6 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 10px 26px rgba(80,140,255,0.6); }
.ptt-novareg__btn:disabled{ opacity: .55; cursor: not-allowed; transform: none; }

.ptt-novareg__loader{
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 0;
  opacity: .9;
}
.ptt-novareg__loader.is-on{ display: inline-flex; }
.ptt-novareg__dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.55);
  animation: ptt-regdot 1.05s infinite ease-in-out;
}
.ptt-novareg__dot:nth-child(2){ animation-delay: .12s; }
.ptt-novareg__dot:nth-child(3){ animation-delay: .24s; }
.ptt-novareg__loadText{ font-weight: 900; letter-spacing: .01em; opacity: .9; margin-left: 6px; }

@keyframes ptt-regdot{
  0%, 100%{ transform: translateY(0); opacity: .5; }
  50%{ transform: translateY(-4px); opacity: 1; }
}

.ptt-novareg__msg{
  min-height: 20px;
  opacity: .92;
  line-height: 1.65;
  font-size: 14.5px;
}
.ptt-novareg__msg.is-bad{ color: rgba(255,160,160,.95); }
.ptt-novareg__msg.is-ok{ color: rgba(160,255,205,.95); }

.ptt-novareg__alt{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: .9;
}
.ptt-novareg__altLink{
  font-weight: 950;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.ptt-novareg__fine{
  opacity: .78;
  font-size: 13.6px;
  line-height: 1.6;
  text-align: center;
}

.ptt-novareg__sideCard{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding: clamp(16px, 2.8vw, 22px);
  box-shadow: 0 18px 70px rgba(0,0,0,.16);
}
.ptt-novareg__sideTop{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
}
.ptt-novareg__badge{
  width: 54px; height: 54px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
}
.ptt-novareg__sideTitle{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
}
.ptt-novareg__sideText{
  margin-top: 6px;
  opacity: .86;
  line-height: 1.7;
  font-size: 14.6px;
}
.ptt-novareg__sideRule{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
  text-align: center;
}
.ptt-novareg__sideRuleK{ font-weight: 950; letter-spacing: .01em; }
.ptt-novareg__sideRuleV{ margin-top: 6px; opacity: .86; line-height: 1.7; font-size: 14.2px; }

.ptt-regveil{
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 18px;
}
.ptt-regveil__shade{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
}
.ptt-regveil__card{
  position: relative; z-index: 2;
  width: min(560px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,16,34,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 110px rgba(0,0,0,.46);
  padding: 18px;
  text-align: center;
}
.ptt-regveil__icon{
  width: 70px; height: 70px;
  border-radius: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(160,255,205,.10);
  border: 1px solid rgba(160,255,205,.22);
  margin-bottom: 10px;
  font-size: 22px;
}
.ptt-regveil__title{
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  font-size: 20px;
  margin-bottom: 6px;
}
.ptt-regveil__text{ opacity: .9; line-height: 1.7; font-size: 14.8px; }
.ptt-regveil__btn{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
}

@media (max-width: 980px){
  .ptt-novareg__grid{ grid-template-columns: 1fr; }
}

.ptt-voidmark{
  min-height: calc(100vh - 2px);
  display: grid;
  place-items: center;
  padding: 34px 0;
  background:
    radial-gradient(760px 520px at 18% 12%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(720px 520px at 86% 20%, rgba(255,255,255,.045), transparent 62%),
    linear-gradient(180deg, rgba(7,21,42,1), rgba(6,18,36,1));
}
.ptt-voidmark__wrap{ width: min(920px, calc(100% - 32px)); margin: 0 auto; }

.ptt-voidmark__card{
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  box-shadow: 0 22px 90px rgba(0,0,0,.22);
  padding: clamp(18px, 4vw, 34px);
}

.ptt-voidmark__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .95;
}

.ptt-voidmark__title{
  margin: 14px 0 10px;
  font-family: var(--ptt-font-display);
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(26px, 3.3vw, 46px);
}
.ptt-voidmark__text{
  max-width: 70ch;
  margin: 0 auto;
  opacity: .9;
  line-height: 1.75;
  font-size: 15.6px;
}

.ptt-voidmark__actions{
  margin-top: 16px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.ptt-voidmark__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  font-weight: 950;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.ptt-voidmark__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.ptt-voidmark__btn--soft{
  background: rgba(0,0,0,.14);
}
.ptt-voidmark__btn--soft:hover{
  background: rgba(255,255,255,.06);
}

.ptt-voidmark__links{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  opacity: .9;
}
.ptt-voidmark__link{
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.ptt-voidmark__dot{ opacity: .65; }

.ptt-voidmark__fine{
  margin-top: 14px;
  opacity: .75;
  font-size: 13.6px;
  line-height: 1.6;
}
