@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap");

:root {
  --revel-ink: #20180f;
  --revel-muted: #6f604d;
  --revel-paper: #f7efe4;
  --revel-cream: #fffaf2;
  --revel-line: #dcc8a7;
  --revel-gold: #c49c55;
  --revel-gold-soft: #f4ddb4;
  --revel-green: #7fa86b;
  --revel-blue: #123b5d;
  --revel-red: #b8493f;
  --revel-shadow: 0 22px 70px rgba(50, 37, 21, 0.16);
  --revel-font: "Satoshi", "Manrope", "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.revel-site,
.revel-site * {
  box-sizing: border-box;
}

.revel-site *,
.revel-site button,
.revel-site input,
.revel-site select,
.revel-site textarea {
  font-family: var(--revel-font);
}

.revel-site {
  margin: 0;
  color: var(--revel-ink);
  font-family: var(--revel-font);
  background:
    radial-gradient(circle at 84% 8%, rgba(244, 221, 180, 0.9), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(18, 59, 93, 0.14), transparent 26rem),
    linear-gradient(160deg, #fffaf2 0%, #f5ebdd 48%, #ecdbc4 100%);
  line-height: 1.55;
}

.revel-site.dark-nav {
  background:
    radial-gradient(circle at 84% 8%, rgba(244, 221, 180, 0.34), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(18, 59, 93, 0.12), transparent 26rem),
    linear-gradient(160deg, #fffaf2 0%, #f5ebdd 48%, #ecdbc4 100%);
}

.revel-site a {
  color: inherit;
}

.revel-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.revel-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(17, 22, 30, 0.92);
  border-bottom: 1px solid rgba(255, 223, 168, 0.12);
}

.revel-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.revel-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  color: #f2c76f;
  -webkit-text-fill-color: #f2c76f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  text-shadow: 0 8px 28px rgba(242, 199, 111, 0.16);
}

.revel-brand:visited,
.revel-brand:hover,
.revel-brand:focus {
  color: #f2c76f;
  -webkit-text-fill-color: #f2c76f;
}

.revel-brand img {
  display: block;
  width: clamp(34px, 3.2vw, 46px);
  height: clamp(34px, 3.2vw, 46px);
  border-radius: 12px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 223, 168, 0.16);
}

.revel-nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
}

.revel-nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.revel-mobile-cta {
  display: none;
}

.revel-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 223, 168, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  cursor: pointer;
}

.revel-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.revel-nav.open .revel-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.revel-nav.open .revel-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.revel-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff7e8;
  font-family: var(--revel-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.revel-language.enhanced {
  min-width: 138px;
}

.revel-language select {
  width: auto;
  min-width: 132px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 250, 242, 0.08);
  border-radius: 999px;
  color: inherit;
  font-family: var(--revel-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 28px 8px 10px;
  cursor: pointer;
}

.revel-language.enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.revel-language::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.8;
}

.revel-language.enhanced::after {
  display: none;
}

.revel-language option {
  color: #20180f;
  font-family: var(--revel-font);
}

.revel-language-menu {
  position: relative;
  width: 100%;
  font-family: var(--revel-font);
}

.revel-language-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: #fff7e8;
  padding: 8px 24px 8px 11px;
  font: inherit;
  font-family: var(--revel-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.revel-language-trigger .revel-language-flag,
.revel-language-option .revel-language-flag {
  display: inline-block;
  width: 1.35em;
  margin-right: 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.revel-language-trigger span,
.revel-language-option span {
  display: inline-block;
}

.revel-language-trigger::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.8;
}

.revel-language-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 2px;
  width: max-content;
  min-width: 178px;
  max-height: 320px;
  overflow: auto;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(255, 223, 168, 0.22);
  border-radius: 14px;
  background: #121820;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  list-style: none;
}

.revel-language-list[hidden] {
  display: none;
}

.revel-language-option {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 250, 242, 0.82);
  padding: 9px 10px;
  font: inherit;
  font-family: var(--revel-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.revel-language-option:hover,
.revel-language-option:focus-visible,
.revel-language-option.active {
  background: rgba(255, 214, 111, 0.14);
  color: #fffaf2;
}

.revel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #2d2317;
  border-radius: 999px;
  padding: 10px 18px;
  background: #21180f;
  color: #fff9ef;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(33, 24, 15, 0.18);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.revel-btn.secondary {
  background: rgba(255, 250, 242, 0.7);
  color: var(--revel-ink);
  border-color: var(--revel-line);
  box-shadow: none;
}

.revel-btn.gold {
  background: linear-gradient(135deg, #f6dfa8, #c49c55);
  color: #22180d;
  border-color: #b98f42;
}

.revel-btn:hover,
.revel-btn:focus-visible {
  border-color: rgba(255, 214, 111, 0.62);
  box-shadow:
    0 18px 42px rgba(33, 24, 15, 0.24),
    0 0 0 4px rgba(255, 214, 111, 0.12);
  transform: translateY(-2px);
}

.revel-btn.gold:hover,
.revel-btn.gold:focus-visible {
  box-shadow:
    0 20px 46px rgba(196, 156, 85, 0.34),
    0 0 0 4px rgba(255, 214, 111, 0.16);
}

.revel-btn:active {
  transform: translateY(0);
}

.revel-mobile-cta.revel-btn {
  display: none;
}

.revel-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 9vw, 118px) 0 clamp(52px, 7vw, 86px);
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 212, 133, 0.24), transparent 25rem),
    radial-gradient(circle at 10% 22%, rgba(18, 59, 93, 0.44), transparent 27rem),
    linear-gradient(145deg, #10151c 0%, #151d25 58%, #20180f 100%);
}

.revel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 250, 242, 0.06) 26%, transparent 52%),
    linear-gradient(180deg, transparent 58%, rgba(255, 250, 242, 0.1) 78%, #fffaf2 100%);
  pointer-events: none;
}

.revel-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px) 0;
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 212, 133, 0.22), transparent 24rem),
    radial-gradient(circle at 10% 22%, rgba(18, 59, 93, 0.42), transparent 26rem),
    linear-gradient(145deg, #10151c 0%, #151d25 58%, #20180f 100%);
}

.revel-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 250, 242, 0.06) 26%, transparent 52%);
  pointer-events: none;
}

.revel-page-hero > .revel-wrap {
  position: relative;
  z-index: 1;
}

.revel-page-hero h1 {
  margin: 14px 0;
  max-width: 880px;
  color: #ffd66f;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.revel-page-hero p {
  max-width: 760px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.revel-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.revel-eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: clamp(14px, 1.7vw, 20px);
  border: 1px solid rgba(212, 166, 84, 0.72);
  background: linear-gradient(180deg, #fff9eb 0%, #f8edd8 100%);
  color: #8a641f;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 26px rgba(146, 103, 36, 0.12);
}

.revel-hero h1 {
  margin: 18px 0 18px;
  color: #ffd66f;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 820px;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}

.revel-lead {
  margin: 0;
  max-width: 700px;
  color: #fffaf2;
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid rgba(255, 223, 168, 0.18);
  border-radius: 16px;
  background: rgba(13, 17, 23, 0.68);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  font-size: clamp(18px, 2vw, 22px);
}

.revel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.revel-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.revel-proof div {
  border: 1px solid rgba(255, 223, 168, 0.28);
  border-radius: 18px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 223, 168, 0.12), transparent 42%),
    rgba(9, 13, 18, 0.72);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.revel-proof strong {
  display: block;
  color: #f4ddb4;
  font-size: 22px;
  font-weight: 800;
}

.revel-proof span {
  color: rgba(255, 250, 242, 0.84);
  font-size: 13px;
}

.revel-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.revel-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(205px, 46vw);
  padding: 4px;
  border: 1px solid rgba(255, 223, 168, 0.2);
  border-radius: 14px;
  background: rgba(5, 7, 10, 0.92);
  line-height: 0;
  text-decoration: none;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.revel-store-badge:hover,
.revel-store-badge:focus-visible {
  border-color: rgba(255, 214, 111, 0.58);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    0 0 0 4px rgba(255, 214, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.revel-store-badge img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  clip-path: inset(0 1px 0 0 round 10px);
}

.revel-visual {
  position: relative;
  min-height: 620px;
  perspective: 1100px;
}

.revel-dashboard {
  position: absolute;
  inset: 76px 0 auto 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 223, 168, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 223, 168, 0.1), transparent 42%),
    rgba(10, 14, 20, 0.9);
  box-shadow:
    0 28px 76px rgba(5, 7, 10, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 22px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.revel-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.revel-mini-title {
  margin: 0;
  color: #f4ddb4;
  font-weight: 900;
}

.revel-mini-muted {
  margin: 2px 0 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 13px;
}

.revel-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.revel-stat {
  border-radius: 16px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.03));
  border: 1px solid rgba(255, 223, 168, 0.18);
  color: rgba(255, 250, 242, 0.78);
}

.revel-stat b {
  display: block;
  color: #ffd66f;
  font-size: 24px;
}

.revel-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 223, 168, 0.16);
  color: rgba(255, 250, 242, 0.82);
}

.revel-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid;
}

.revel-tag.blue {
  color: #dff2ff;
  background: rgba(18, 59, 93, 0.72);
  border-color: rgba(139, 204, 238, 0.32);
}

.revel-tag.green {
  color: #ecffe8;
  background: rgba(73, 127, 82, 0.72);
  border-color: rgba(189, 226, 174, 0.34);
}

.revel-phone {
  position: absolute;
  right: 22px;
  top: 0;
  width: min(238px, 46vw);
  border: 1px solid rgba(255, 223, 168, 0.34);
  border-radius: 46px;
  padding: 13px;
  background:
    linear-gradient(145deg, #ffe1a1 0%, #9f7836 8%, #222a34 15%, #070a0e 100%);
  box-shadow:
    0 38px 96px rgba(5, 7, 10, 0.44),
    0 14px 34px rgba(196, 156, 85, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 6px #05070a,
    inset 0 0 0 9px rgba(255, 255, 255, 0.045);
  transform: rotateZ(3deg) rotateY(-7deg) translateZ(28px);
  transform-style: preserve-3d;
}

.revel-phone::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 21px;
  border-radius: 999px;
  background: #05070a;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 1px 8px rgba(0, 0, 0, 0.26);
  transform: translateX(-50%);
}

.revel-phone img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.2;
  object-fit: cover;
  border-radius: 33px;
  background: #10151c;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 0 0 5px #05070a;
  filter: saturate(1.05) contrast(1.02);
}

.revel-phone-glass {
  position: absolute;
  inset: 13px;
  z-index: 1;
  border-radius: 33px;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.14), transparent 8rem),
    radial-gradient(circle at 76% 12%, rgba(255, 223, 168, 0.18), transparent 18rem);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.revel-phone.second {
  right: auto;
  left: 10px;
  top: 255px;
  width: min(205px, 42vw);
  transform: rotateZ(-7deg) rotateY(8deg) translateZ(10px);
  box-shadow:
    0 32px 84px rgba(5, 7, 10, 0.38),
    0 8px 22px rgba(196, 156, 85, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 6px #05070a,
    inset 0 0 0 9px rgba(255, 255, 255, 0.045);
}

.revel-section {
  padding: clamp(44px, 7vw, 86px) 0;
}

.revel-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.revel-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.revel-section p {
  color: var(--revel-muted);
}

.revel-video-section {
  padding-top: clamp(58px, 7vw, 88px);
  background: transparent;
}

.revel-video-head {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 223, 168, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 223, 168, 0.1), transparent 34%),
    rgba(13, 17, 23, 0.9);
  text-align: center;
  box-shadow:
    0 22px 62px rgba(16, 21, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.revel-video-head .revel-eyebrow {
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.revel-video-head h2 {
  max-width: 700px;
  margin: 0 auto 10px;
  color: #fffaf2;
}

.revel-video-head p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.76);
}

.revel-video-frame {
  position: relative;
  overflow: hidden;
  width: min(980px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 223, 168, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 214, 111, 0.2), transparent 18%),
    #0d1117;
  box-shadow:
    0 28px 82px rgba(16, 21, 28, 0.28),
    0 10px 30px rgba(196, 156, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.revel-video-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 242, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.revel-video-frame iframe {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 0;
  border-radius: 18px;
  background: #10151c;
}

.revel-video-poster {
  position: absolute;
  inset: 10px;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.72), rgba(16, 21, 28, 0.24)),
    #10151c;
  color: #fffaf2;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.revel-video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 214, 111, 0.28), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.58) 100%);
}

.revel-video-poster img {
  position: absolute;
  inset: auto 7% -18% auto;
  width: min(270px, 32vw);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(5deg);
  filter: saturate(1.06) contrast(1.02);
}

.revel-video-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: clamp(68px, 8vw, 92px);
  height: clamp(68px, 8vw, 92px);
  place-items: center;
  border: 1px solid rgba(255, 223, 168, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #f6dfa8, #c49c55);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    0 0 0 10px rgba(255, 214, 111, 0.14);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.revel-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #20180f;
}

.revel-video-poster strong {
  position: absolute;
  left: 50%;
  top: calc(50% + 62px);
  z-index: 2;
  padding: 8px 13px;
  border: 1px solid rgba(255, 223, 168, 0.26);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.62);
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.revel-video-poster:hover .revel-video-play,
.revel-video-poster:focus-visible .revel-video-play {
  border-color: rgba(255, 250, 242, 0.78);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    0 0 0 12px rgba(255, 214, 111, 0.2);
  transform: translateY(-2px) scale(1.05);
}

.revel-video-poster:active .revel-video-play {
  transform: translateY(0) scale(1);
}

.revel-pattern-section,
.revel-why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, transparent 0%, rgba(245, 212, 133, 0.16) 22%, transparent 42%),
    linear-gradient(302deg, transparent 8%, rgba(255, 250, 242, 0.08) 32%, transparent 58%),
    repeating-linear-gradient(112deg, rgba(255, 250, 242, 0.035) 0 1px, transparent 1px 16px),
    #101820;
  color: #fffaf2;
}

.revel-why-section {
  margin-top: clamp(22px, 4vw, 46px);
}

.revel-pattern-section::before,
.revel-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 250, 242, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.72;
  pointer-events: none;
}

.revel-pattern-section > .revel-wrap,
.revel-why-grid {
  position: relative;
  z-index: 1;
}

.revel-pattern-section h2,
.revel-why-section h2 {
  color: #fffaf2;
}

.revel-pattern-section p,
.revel-why-section p {
  color: rgba(255, 250, 242, 0.74);
}

.revel-pattern-section .revel-card:not(.revel-why-card) {
  border-color: rgba(255, 223, 168, 0.22);
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.revel-pattern-section .revel-card:not(.revel-why-card) h3 {
  color: #fffaf2;
}

.revel-pattern-section .revel-card:not(.revel-why-card) p {
  color: rgba(255, 250, 242, 0.72);
}

.revel-why-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 223, 168, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 239, 204, 0.9)),
    #fffaf2;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(245, 212, 133, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.revel-why-card h3 {
  color: #20180f;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  max-width: 420px;
}

.revel-why-card p {
  color: #463823;
  font-size: 18px;
  line-height: 1.6;
}

.revel-light-pattern,
.revel-home-features {
  background:
    linear-gradient(120deg, rgba(196, 156, 85, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(18, 59, 93, 0.08), transparent 42%),
    repeating-linear-gradient(112deg, rgba(32, 24, 15, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #fffaf2 0%, #f3e4d1 100%);
}

.revel-light-pattern .revel-section-head,
.revel-home-features .revel-section-head {
  max-width: 820px;
}

.revel-light-pattern .revel-card,
.revel-light-pattern .revel-step-list li,
.revel-home-features .revel-card {
  background: rgba(255, 250, 242, 0.9);
  box-shadow:
    0 18px 48px rgba(50, 37, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.revel-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.revel-card {
  border: 1px solid var(--revel-line);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.76);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(50, 37, 21, 0.08);
}

.revel-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.revel-card p {
  margin: 0;
}

.revel-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: start;
}

.revel-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}

.revel-about-lead {
  margin-bottom: 0;
}

.revel-about-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.revel-about-story {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 223, 168, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 214, 111, 0.22), transparent 22rem),
    rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 52px rgba(50, 37, 21, 0.1);
}

.revel-about-story h2 {
  max-width: 780px;
}

.revel-about-story p {
  max-width: 780px;
  font-size: 18px;
}

.revel-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 223, 168, 0.16);
  border-radius: 24px;
  background: #121820;
  color: #fffaf2;
  box-shadow: 0 22px 62px rgba(16, 21, 28, 0.22);
}

.revel-about-cta h2 {
  color: #fffaf2;
}

.revel-about-cta p {
  max-width: 650px;
  color: rgba(255, 250, 242, 0.72);
}

.revel-service-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: start;
}

.revel-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: revel-step;
}

.revel-step-list li {
  position: relative;
  min-height: 86px;
  padding: 18px 18px 18px 74px;
  border: 1px solid var(--revel-line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 12px 32px rgba(50, 37, 21, 0.08);
  counter-increment: revel-step;
}

.revel-step-list li::before {
  content: counter(revel-step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #121820;
  color: #f5d485;
  font-weight: 900;
}

.revel-step-list strong,
.revel-step-list span {
  display: block;
}

.revel-step-list span {
  margin-top: 4px;
  color: var(--revel-muted);
}

.revel-service-fit {
  min-height: 100%;
}

.revel-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.revel-pill-list li {
  border: 1px solid rgba(33, 24, 15, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 244, 223, 0.82);
  color: #3c3123;
  font-weight: 800;
}

.revel-guest-hero {
  overflow: hidden;
}

.revel-guest-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.revel-guest-showcase {
  position: relative;
  min-height: 430px;
  perspective: 900px;
}

.revel-guest-showcase img {
  position: absolute;
  top: 0;
  width: min(215px, 44vw);
  border: 9px solid #05070a;
  border-radius: 38px;
  background: #0b1017;
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 223, 168, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.revel-guest-showcase img:first-child {
  left: 5%;
  transform: rotate(-5deg) translateY(26px);
}

.revel-guest-showcase img:last-child {
  right: 2%;
  transform: rotate(6deg);
}

.revel-guest-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.revel-guest-flow article {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 223, 168, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 10%, rgba(245, 212, 133, 0.16), transparent 18rem),
    #121820;
  color: #fffaf2;
  box-shadow: 0 22px 62px rgba(16, 21, 28, 0.2);
}

.revel-guest-flow h2 {
  color: #fffaf2;
}

.revel-guest-flow p {
  color: rgba(255, 250, 242, 0.72);
}

.revel-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.revel-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
}

.revel-plan.featured {
  border-color: #b98f42;
  background: linear-gradient(180deg, #fffaf2, #fff0d4);
}

.revel-popular {
  position: absolute;
  top: -13px;
  right: 20px;
  border-radius: 999px;
  background: #21180f;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

.revel-price {
  font-size: 34px;
  font-weight: 950;
  margin: 10px 0;
}

.revel-price span {
  font-size: 14px;
  color: var(--revel-muted);
  font-weight: 700;
}

.revel-price-custom {
  font-size: 28px;
  line-height: 1.1;
}

.revel-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--revel-line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  padding: 5px;
  margin: 0 0 18px;
  box-shadow: 0 12px 28px rgba(50, 37, 21, 0.08);
}

.revel-billing-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--revel-muted);
  padding: 10px 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.revel-billing-toggle button.active {
  background: #21180f;
  color: #fff9ef;
  box-shadow: 0 10px 24px rgba(33, 24, 15, 0.18);
}

.revel-billing-note {
  margin: -4px 0 18px;
  color: var(--revel-muted);
  font-weight: 800;
}

.revel-list {
  padding: 0;
  margin: 14px 0 24px;
  list-style: none;
  display: grid;
  gap: 9px;
}

.revel-list li {
  position: relative;
  padding-left: 24px;
  color: #3c3123;
}

.revel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--revel-green);
}

.revel-plan .revel-btn {
  margin-top: auto;
}

.revel-compare {
  overflow-x: auto;
  border: 1px solid rgba(255, 223, 168, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 18%, rgba(106, 45, 146, 0.24), transparent 28rem),
    linear-gradient(110deg, #060609, #100615 55%, #09090d);
  box-shadow: 0 24px 70px rgba(18, 10, 24, 0.24);
}

.revel-compare table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: rgba(255, 250, 242, 0.82);
}

.revel-compare th,
.revel-compare td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  text-align: center;
}

.revel-compare th:first-child,
.revel-compare td:first-child {
  text-align: left;
  width: 34%;
}

.revel-compare th {
  color: #fffaf2;
  font-size: 16px;
}

.revel-compare .group td {
  color: rgba(255, 250, 242, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.revel-checkmark {
  color: #19d36e;
  font-size: 24px;
  font-weight: 900;
}

.revel-dash {
  color: rgba(255, 250, 242, 0.34);
}

.revel-order {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.revel-form {
  display: grid;
  gap: 14px;
}

.revel-field {
  display: grid;
  gap: 6px;
}

.revel-field label {
  font-size: 13px;
  font-weight: 850;
  color: #514431;
}

.revel-field input,
.revel-field select,
.revel-field textarea {
  width: 100%;
  border: 1px solid #cdb48e;
  border-radius: 13px;
  background: white;
  color: var(--revel-ink);
  padding: 12px 13px;
  font: inherit;
}

.revel-field textarea {
  min-height: 92px;
  resize: vertical;
}

.revel-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.revel-terms-box {
  max-height: 170px;
  overflow: auto;
  border: 1px solid #d6bd96;
  border-radius: 14px;
  background: #fff7e8;
  padding: 14px;
  color: #4a3d2d;
  font-size: 13px;
}

.revel-text-button {
  align-self: flex-start;
  border: 1px solid rgba(185, 143, 66, 0.42);
  border-radius: 999px;
  background: rgba(33, 24, 15, 0.08);
  color: #8a641f;
  padding: 9px 13px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.revel-text-button:hover,
.revel-text-button:focus-visible {
  border-color: #b98f42;
  background: #21180f;
  color: #f6dfa8;
  transform: translateY(-1px);
}

.revel-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3a2d1c;
  font-size: 14px;
}

.revel-check input {
  margin-top: 4px;
}

.revel-notice {
  border-left: 4px solid var(--revel-gold);
  background: #fff6e5;
  border-radius: 14px;
  padding: 14px;
  color: #4a3d2d;
}

.revel-form-status {
  min-height: 24px;
  font-weight: 800;
}

.revel-form-status.ok {
  color: #2e6f35;
}

.revel-form-status.warn {
  color: var(--revel-red);
}

.revel-modal[hidden] {
  display: none;
}

.revel-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.revel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(8px);
}

.revel-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(940px, 100%);
  max-height: min(82vh, 860px);
  border: 1px solid rgba(255, 223, 168, 0.22);
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.revel-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--revel-line);
}

.revel-modal-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.revel-icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--revel-line);
  border-radius: 999px;
  background: #fff4df;
  color: var(--revel-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.revel-modal-body {
  overflow: auto;
  padding: 0;
}

.revel-modal-body .revel-legal-terms {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.revel-legal-intro {
  margin-bottom: 18px;
}

.revel-legal-intro strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.revel-translation-status {
  min-height: 22px;
  margin-top: 10px;
  font-weight: 800;
}

.revel-legal-terms {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
}

.revel-legal-terms h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.revel-legal-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(50, 37, 21, 0.12);
}

.revel-legal-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.revel-legal-section h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

.revel-legal-terms p,
.revel-legal-terms li {
  color: #3c3123;
  font-size: 16px;
}

.revel-legal-terms ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.revel-legal-meta {
  margin: 0 0 4px;
  font-weight: 900;
}

.revel-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 223, 168, 0.14);
  background: #121820;
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
}

.revel-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

@media (max-width: 920px) {
  .revel-nav-inner {
    gap: 12px;
  }
  .revel-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .revel-nav-links {
    display: none;
  }
  .revel-nav.open .revel-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 223, 168, 0.16);
    border-radius: 18px;
    background: rgba(18, 24, 32, 0.98);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  }
  .revel-nav.open .revel-nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 250, 242, 0.06);
    color: #fffaf2;
  }
  .revel-nav.open .revel-nav-links .revel-mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f5d485, #d69d42);
    color: #18110a;
    box-shadow: 0 14px 34px rgba(214, 157, 66, 0.26);
  }
  .revel-nav.open .revel-language {
    width: 100%;
  }
  .revel-nav.open .revel-language.enhanced {
    min-width: 100%;
  }
  .revel-nav.open .revel-language-list {
    left: 0;
    right: auto;
    width: 100%;
  }
  .revel-nav-inner > .revel-btn.gold {
    display: none;
  }
  .revel-hero-grid,
  .revel-split,
  .revel-order,
  .revel-about-grid,
  .revel-service-steps,
  .revel-guest-hero-grid,
  .revel-guest-flow {
    grid-template-columns: 1fr;
  }
  .revel-guest-showcase {
    min-height: 520px;
  }
  .revel-about-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .revel-visual {
    min-height: 580px;
  }
  .revel-video-section {
    padding-top: clamp(72px, 16vw, 118px);
  }
  .revel-feature-grid,
  .revel-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .revel-proof,
  .revel-stat-grid,
  .revel-form-grid {
    grid-template-columns: 1fr;
  }
  .revel-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .revel-wrap {
    width: min(100% - 24px, 1180px);
  }
  .revel-dashboard {
    position: relative;
    inset: auto;
  }
  .revel-phone,
  .revel-phone.second {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 18px auto 0;
  }
  .revel-visual {
    min-height: 0;
  }
  .revel-video-section {
    padding-top: 92px;
  }
  .revel-plan-grid {
    grid-template-columns: 1fr;
  }
}
