:root {
  --paper: #e9f0f2;
  --paper2: #f4f8f9;
  --mist: #eef5f6;
  --white: #fff;
  --ink: #16243d;
  --navy: #102038;
  --blue: #301993;
  --blue-h: #3d23b0;
  --blue-l: #8a78d6;
  --title: #301993;
  --muted: #5d6b81;
  --line: #dde6ea;
  --tile-blue: #e7eef8;
  --tile-grey: #eef2f5;
  --tile-mist: #e6eef0;
  --alcove1: #0a0f1c;
  --alcove2: #17223a;
  --glow: rgba(150, 170, 255, .5);
  --disp: 'Quicksand', sans-serif;
  --body: 'Open Sans', sans-serif;
  --maxw: 1280px;
  --tr: 10px;
  --tr-s: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}



.kick {
  font-family: var(--disp);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--blue)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--tr-s);
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 32, 56, .25);
  background: #16294a
}

.btn svg {
  width: 16px;
  height: 16px
}

.btn.line {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(16, 32, 56, .22)
}

.btn.line:hover {
  background: rgba(16, 32, 56, .05);
  box-shadow: none
}

.lnk {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.lnk svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform .3s
}

.lnk:hover svg {
  transform: translateX(4px)
}

.strip {
  text-align: center;
  font-family: var(--disp);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #46566f;
  padding: 9px
}

.strip b {
  color: var(--blue)
}

.strip .stars {
  color: #f4b400;
  letter-spacing: 1px
}



.navin {
  margin: 0 auto;
  max-width: var(--maxw);
  width: calc(100% - 36px);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 5px;
  box-shadow: 0 10px 34px rgba(16, 32, 56, .1);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 16px 11px 22px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px
}

.brandmark {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  flex: none;
  box-shadow: 0 5px 16px rgba(70, 50, 170, .3)
}

.wordmark {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .16em;
  color: var(--navy)
}

.wordmark span {
  color: var(--blue)
}

.navlinks {
  display: flex;
  gap: 24px;
  margin-left: 14px;
  font-family: var(--disp);
  font-weight: 500;
  font-size: 15px
}

.navlinks a {
  position: relative;
  color: #26344e;
  padding: 3px 0
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--blue);
  border-radius: 2px;
  transition: width .3s
}

.navlinks a:hover::after {
  width: 100%
}

.navtools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--disp);
  font-weight: 500;
  font-size: 14px;
  color: #26344e
}

.navtools .ic {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer
}

.navtools svg {
  width: 18px;
  height: 18px;
  stroke: #26344e;
  fill: none;
  stroke-width: 1.6
}

.cartn {
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  font-size: 11px
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer
}

.burger svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  stroke-width: 2
}

.mobnav {
  display: none
}

.mobnav.open {
  display: block;
  max-width: var(--maxw);
  margin: 8px auto 0;
  width: calc(100% - 36px);
  background: rgba(255, 255, 255, .96);
  border-radius: 5px;
  padding: 12px 22px;
  box-shadow: 0 14px 34px rgba(16, 32, 56, .14)
}

.mobnav a {
  display: block;
  font-family: var(--disp);
  font-weight: 500;
  padding: 11px 0;
  color: #26344e;
  border-bottom: 1px solid var(--line)
}

.mobnav a:last-child {
  border: none
}

.hero {
  padding: 16px 0 0
}

.hsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--tr);
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 24px 60px rgba(16, 32, 56, .08)
}

.hleft {
  background: var(--tile-grey);
  padding: 30px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hleft h1 {
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -1px;
  color: var(--title);
  margin-top: 10px
}

.hleft h1 em {
  font-style: normal;
  color: var(--blue)
}

.hleft p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 13px;
  max-width: 400px
}

.hmeta {
  margin-top: 16px;
  border-top: 1px solid rgba(16, 32, 56, .12);
  padding-top: 13px;
  min-height: 54px
}

.hmeta .pt {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue)
}

.hmeta .pn {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 21px;
  color: var(--title);
  margin-top: 2px
}

.hmeta .pp {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  color: #33425c
}

.hacts {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.hright {
  position: relative;
  background: radial-gradient(120% 90% at 50% 36%, #1d2a45 0%, var(--alcove1) 74%);
  display: flex;
  flex-direction: column;
  padding: 22px
}

.hstage {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 200px
}

.hstage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 38% at 50% 42%, var(--glow), transparent 64%);
  opacity: .5;
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.95);
  transition: opacity .8s, transform .8s
}

.slide.active {
  opacity: 1;
  transform: none
}

.slide img {
  width: 60%;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, .55));
  animation: float 7s ease-in-out infinite
}

.pbadge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(243, 246, 250, .95);
  color: var(--blue);
  font-family: var(--disp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .07em;
  padding: 7px 13px;
  border-radius: var(--tr-s)
}

.hctrl {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.dots {
  display: flex;
  gap: 7px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
  cursor: pointer;
  transition: .3s
}

.dot.active {
  background: #fff;
  width: 22px;
  border-radius: 5px
}

.navbtns {
  display: flex;
  gap: 8px
}

.cbtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s
}

.cbtn:hover {
  background: rgba(255, 255, 255, .2)
}

.cbtn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--blue);
  border-top: none;
  border-radius: 0 0 var(--tr) var(--tr);
  overflow: hidden
}

.trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  background: var(--blue)
}

.trust span:last-child {
  border-right: none
}

.trust svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7
}

section.blk {
  padding: 80px 0;
  background: var(--paper2)
}

section.blk.alt {
  background: linear-gradient(#f1f6f7, #e7eff1)
}

.shead {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 42px
}

.shead .num {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--blue);
  padding-top: 6px
}

.shead h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.5px;
  color: var(--title)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s, transform .8s
}

.reveal.in {
  opacity: 1;
  transform: none
}

.story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: stretch
}

.story-fig {
  border-radius: var(--tr);
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(16, 32, 56, .16);
  min-height: 380px
}

.story-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.story-txt {
  background: var(--white);
  border-radius: var(--tr);
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.story-txt h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--title);
  margin-top: 12px;
  line-height: 1.12;
  letter-spacing: -.4px
}

.story-txt h2 em {
  font-style: normal;
  color: var(--blue)
}

.story-txt p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px
}

.sig {
  margin-top: 18px;
  font-family: var(--disp);
  font-weight: 600;
  color: var(--navy)
}

.sig small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13px
}

.story-txt .btn {
  margin-top: 24px;
  align-self: flex-start
}

.pbento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.pcard {
  background: var(--white);
  border-radius: var(--tr);
  padding: 16px 16px 22px;
  cursor: pointer;
  transition: transform .35s, box-shadow .35s
}

.pcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(16, 32, 56, .14)
}

.pcard .ps {
  position: relative;
  border-radius: var(--tr-s);
  overflow: hidden;
  aspect-ratio: 1/1.04;
  background: transparent;
  display: grid;
  place-items: center
}

.pcard .ps::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 46% at 50% 42%, rgba(48, 25, 147, .06), transparent 66%);
  opacity: 0;
  transition: opacity .4s
}

.pcard:hover .ps::after {
  opacity: 1
}

.pcard .ps img {
  width: 84%;
  filter: drop-shadow(0 12px 22px rgba(16, 32, 56, .22));
  transition: transform .5s
}

.pcard:hover .ps img {
  transform: translateY(-6px) scale(1.04)
}

.pcard .pt {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 15px
}

.pcard .pn {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--title);
  margin-top: 2px
}

.pcard .prr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px
}

.pcard .pp {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 17px;
  color: #33425c
}

.pcard .add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center
}

.pcard .add svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none
}

.custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--tr);
  overflow: hidden;
  background: var(--tile-blue)
}

.custom-fig {
  min-height: 360px;
  position: relative
}

.custom-fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.custom-body {
  padding: 54px
}

.custom-body h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--title);
  margin-top: 12px;
  line-height: 1.08;
  letter-spacing: -.4px
}

.custom-body p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 420px
}

.cfeats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 26px
}

.cfeats span {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 13px;
  color: #1d3e86;
  background: rgba(255, 255, 255, .75);
  border: 1px solid #cfddf6;
  padding: 7px 14px;
  border-radius: var(--tr-s)
}

.posts {
  border-top: 1px solid var(--line)
}

.post {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 6px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .3s, padding .3s
}

.post:hover {
  background: var(--white);
  padding-left: 18px;
  padding-right: 18px
}

.post .th {
  width: 120px;
  height: 88px;
  border-radius: 5px;
  overflow: hidden
}

.post .th img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.post:hover .th img {
  transform: scale(1.07)
}

.post .pcat {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue)
}

.post h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 25px);
  color: var(--title);
  margin-top: 6px;
  letter-spacing: -.3px
}

.post .arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: .25s
}

.post:hover .arrow {
  background: var(--blue);
  border-color: var(--blue)
}

.post .arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  transition: stroke .25s
}

.post:hover .arrow svg {
  stroke: #fff
}

.blog-foot {
  margin-top: 42px;
  text-align: center
}

.clockblk {
  margin: 0 28px;
  border-radius: var(--tr);
  background: radial-gradient(120% 120% at 50% 25%, #16243f 0%, #080d18 78%);
  color: #fff;
  text-align: center;
  padding: 104px 24px
}

.clockblk .ck {
  font-family: var(--disp);
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--blue-l);
  opacity: .9
}

.clockline {
  font-family: var(--disp);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.06;
  margin: 20px auto 0;
  text-transform: uppercase;
  font-size: clamp(36px, 6.4vw, 96px);
  max-width: 16ch
}

.clockline .w {
  color: rgba(255, 255, 255, .16);
  transition: color .8s ease, text-shadow .8s ease;
  margin: 0 .13em;
  display: inline-block
}

.clockline .w.lit {
  color: #fff;
  text-shadow: 0 0 26px rgba(150, 182, 255, .85), 0 0 60px rgba(120, 150, 255, .4)
}

.clockblk .csub {
  margin-top: 26px;
  color: #9fb0cc;
  font-size: 15px;
  font-family: var(--disp);
  font-weight: 500
}

.clockblk .ccta {
  margin-top: 28px
}

.reviews {
  padding: 80px 0
}

.rv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 38px
}

.rv-score {
  display: flex;
  align-items: center;
  gap: 16px
}

.rv-score .big {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 54px;
  color: var(--title);
  line-height: 1
}

.rv-score .stars {
  color: #f4b400;
  font-size: 20px;
  letter-spacing: 2px
}

.rv-score .sub {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px
}

.rv-g {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--disp);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px
}

.rv-g .gmark {
  font-size: 22px
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--tr);
  padding: 26px;
  box-shadow: 0 14px 34px rgba(16, 32, 56, .06)
}

.rv-card .stars {
  color: #f4b400;
  font-size: 15px;
  letter-spacing: 2px
}

.rv-card p {
  color: #37475f;
  font-size: 15px;
  margin: 12px 0 18px;
  line-height: 1.6
}

.rv-card .who {
  display: flex;
  align-items: center;
  gap: 12px
}

.rv-card .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700
}

.rv-card .nm {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy)
}

.rv-card .dt {
  font-size: 12px;
  color: var(--muted)
}

@media(max-width:1000px) {
  .rv-grid {
    grid-template-columns: 1fr
  }
}



.fbento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px
}

.fcell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--tr);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(16, 32, 56, .05)
}

.fcell.brandcell {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fcell h4 {
  font-family: var(--disp);
  font-weight: 700;
  color: var(--title);
  font-size: 14px;
  letter-spacing: .04em;
  margin-bottom: 14px
}

.fcell a {
  display: block;
  color: #46566f;
  font-size: 14.5px;
  padding: 5px 0;
  transition: .2s
}

.fcell a:hover {
  color: var(--blue)
}

.fcell p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.fnews-cell {
  grid-column: 1/-1;
  background: linear-gradient(120deg, #edeafb, #e7eef1);
  border: 1px solid rgba(48, 25, 147, .18);
  border-radius: var(--tr);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center
}

.fnews-cell h3 {
  font-family: var(--disp);
  font-weight: 700;
  color: var(--title);
  font-size: clamp(22px, 2.4vw, 30px)
}

.fnews-cell .tag10 {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 28px;
  margin-bottom: 12px
}

.fnews-cell p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14.5px
}

.nform {
  display: flex;
  gap: 10px
}

.nform input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--tr-s);
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 15px;
  background: #fff;
  color: var(--ink)
}

.nform input::placeholder {
  color: #9aabc7
}

.nform .btn {
  background: var(--blue)
}

.nform .btn:hover {
  background: var(--blue-h)
}

.pay {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 6px
}

.pay .pbg {
  height: 30px;
  min-width: 46px;
  padding: 0 9px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  color: #16243d
}

.pay .visa {
  color: #1a1f71
}

.pay .mc {
  color: #cc3333
}

.pay .pp {
  color: #003087
}

.pay .cb {
  color: #1f7a3d
}

.fbot {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted)
}

.fbot .made {
  font-family: var(--disp);
  font-weight: 500
}

@media(max-width:1000px) {
  .fbento {
    grid-template-columns: 1fr 1fr
  }

  .fnews-cell {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .fbento {
    grid-template-columns: 1fr
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .34
  }

  50% {
    opacity: .6
  }
}

@media(max-width:1000px) {

  .navlinks,
  .navtools .lbl {
    display: none
  }

  .burger {
    display: block
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "head head" "spot spot" "prop ambi"
  }

  .t-spot {
    min-height: 420px
  }

  .story,
  .custom {
    grid-template-columns: 1fr
  }

  .pbento {
    grid-template-columns: 1fr 1fr
  }

  .bento3 {
    grid-template-columns: 1fr
  }

  .fcols {
    grid-template-columns: 1fr 1fr
  }

  .fnews {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "spot" "ambi" "prop"
  }

  .pbento {
    grid-template-columns: 1fr
  }

  .fcols {
    grid-template-columns: 1fr
  }

  .clockblk {
    margin: 0 16px;
    padding: 72px 18px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .tile {
    opacity: 1;
    transform: none
  }
}

.perso {
  padding: 22px 0 60px
}

.p-hero {
  max-width: 680px
}

.p-hero .kick {
  margin-bottom: 8px
}

.p-hero h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.7px;
  color: var(--title);
  margin-top: 6px
}

.p-hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-top: 11px;
  max-width: 600px
}

.config {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 20px
}

.stage {
  --lit: #ffffff;
  --wood: linear-gradient(135deg, #dcb87f, #b98a4e);
  background: radial-gradient(130% 100% at 50% 30%, #f1f5f7 0%, #dfe8ec 100%);
  border-radius: var(--tr);
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  place-items: center
}

.frame {
  background: var(--wood);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 22px 50px rgba(16, 32, 56, .22);
  transition: background .4s;
  max-width: 430px;
  width: 100%
}

.screen {
  position: relative;
  background: radial-gradient(130% 120% at 50% 28%, #1a2640 0%, #080d18 80%);
  border-radius: 6px;
  padding: 30px 26px 40px;
  overflow: hidden
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 8px 4px
}

.cgrid span {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(12px, 2vw, 18px);
  text-align: center;
  color: rgba(255, 255, 255, .1);
  transition: color .35s, text-shadow .35s;
  user-select: none
}

.cgrid span.lit {
  color: var(--lit);
  text-shadow: 0 0 9px var(--lit), 0 0 18px var(--lit)
}

.stage .live {
  margin-top: 18px;
  text-align: center;
  max-width: 390px
}

.stage .live p {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  color: #5d6b81
}

.stage .live .btn {
  margin-top: 12px
}

.stage .live p b {
  color: var(--blue);
  font-weight: 700
}

.cpanel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--tr);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(16, 32, 56, .06);
  display: flex;
  flex-direction: column
}

.cblock {
  padding: 16px 0;
  border-bottom: 1px solid var(--line)
}

.cblock:first-child {
  padding-top: 0
}

.cblock .lbl {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between
}

.cblock .lbl .v {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--blue)
}

.woods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.wood {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--tr-s);
  padding: 11px 13px;
  cursor: pointer;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  color: #33425c;
  transition: .2s
}

.wood:hover {
  border-color: var(--blue-l)
}

.wood.sel {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(48, 25, 147, .08)
}

.wood i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex: none
}

.sw9 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.sw9 button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  padding: 0
}

.sw9 button:hover {
  transform: scale(1.12)
}

.sw9 button.sel {
  box-shadow: 0 0 0 2px var(--blue)
}

.cfoot {
  margin-top: auto;
  padding-top: 18px
}

.cprice {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 24px;
  color: var(--title)
}

.cprice span {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted)
}

.cbtns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap
}

.cbtns .btn {
  flex: 1;
  justify-content: center;
  min-width: 150px
}

.uploader {
  display: block;
  border: 1.5px dashed var(--line);
  border-radius: var(--tr-s);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: .2s;
  background: var(--paper2)
}

.uploader:hover {
  border-color: var(--blue-l);
  background: #fff
}

.uploader svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 8px
}

.uploader .ut {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy)
}

.uploader .us {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px
}

.uploader input {
  display: none
}

.up-preview {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--tr-s);
  padding: 10px 12px
}

.up-preview.on {
  display: flex
}

.up-preview img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
  flex: none
}

.up-preview .upi {
  flex: 1;
  min-width: 0
}

.up-preview .upn {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.up-preview .ups {
  font-size: 11.5px;
  color: #1f7a3d
}

.up-preview .uprm {
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex: none
}

.up-preview .uprm:hover {
  color: #cc3333
}

.csend-ok {
  display: none;
  align-items: center;
  gap: 10px;
  background: #eafaf0;
  border: 1px solid #b7e6c8;
  color: #1f7a3d;
  border-radius: var(--tr-s);
  padding: 13px 15px;
  margin-top: 14px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px
}

.csend-ok.on {
  display: flex
}

.csend-ok svg {
  width: 18px;
  height: 18px;
  stroke: #1f7a3d;
  fill: none;
  stroke-width: 2;
  flex: none
}

.screen {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  padding: 24px;
  transition: aspect-ratio .35s, background-image .3s, background .3s
}

.cgrid {
  width: 100%;
  max-width: 300px
}

.frame.fmt-portrait .screen {
  aspect-ratio: 3/4
}

.frame.fmt-paysage .screen {
  aspect-ratio: 4/3
}

.seg {
  display: inline-flex;
  background: var(--mist);
  border-radius: 40px;
  padding: 4px;
  gap: 2px
}

.seg button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13px;
  color: #46566f;
  padding: 8px 16px;
  border-radius: 40px;
  transition: .2s
}

.seg button.sel {
  background: var(--blue);
  color: #fff
}

.fond-pane {
  display: none;
  margin-top: 14px
}

.fond-pane.on {
  display: block
}

.wheelwrap {
  display: flex;
  gap: 18px;
  align-items: center
}

.wheel {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  flex: none;
  cursor: crosshair;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0) 70%), conic-gradient(from 90deg, red, #ff0, #0f0, #0ff, #00f, #f0f, red);
  box-shadow: inset 0 0 0 1px var(--line), 0 6px 18px rgba(16, 32, 56, .12)
}

.wsel {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%);
  left: 84%;
  top: 50%;
  pointer-events: none
}

.wctrl {
  flex: 1;
  min-width: 0
}

.wctrl .wlab {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px
}

.hexrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy)
}

.hexdot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #3a86ff
}

.whint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px
}

.pfeats {
  padding: 58px 0 0
}

.pfeats .shead {
  margin-bottom: 24px
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.fcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--tr);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(16, 32, 56, .05)
}

.fcard .fi {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: 14px
}

.fcard .fi svg {
  width: 21px;
  height: 21px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.7
}

.fcard h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--title);
  margin-bottom: 7px
}

.fcard p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55
}

.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px
}

.gal .gi {
  background: linear-gradient(160deg, #f6f9fa, #e7eef1);
  border: 1px solid var(--line);
  border-radius: var(--tr);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden
}

.gal .gi img {
  width: 62%;
  filter: drop-shadow(0 16px 26px rgba(16, 32, 56, .2))
}

.gal .cap {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px
}

.sur {
  margin-top: 54px;
  border-radius: var(--tr);
  overflow: hidden;
  background: linear-gradient(120deg, #301993, #3d23b0);
  color: #fff;
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.sur h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px)
}

.sur p {
  color: #d7d2f3;
  margin-top: 8px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6
}

.sur .btn {
  background: #fff;
  color: var(--blue)
}

.sur .btn svg {
  stroke: var(--blue)
}

@media(max-width:900px) {
  .config {
    grid-template-columns: 1fr
  }

  .fgrid {
    grid-template-columns: 1fr
  }

  .gal {
    grid-template-columns: 1fr
  }

  .sur {
    grid-template-columns: 1fr
  }
}