@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("assets/barlow-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
:root .site-header .brand img {
  width: 136px;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
}
:root .site-footer img[alt*="RANATICS"] {
  width: 120px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 760px) {
  :root .site-header .brand img {
    width: 120px;
    height: auto;
  }
  :root .site-footer img[alt*="RANATICS"] {
    width: 100px;
    height: auto;
  }
}
:root {
  --jade: #146e5e;
  --jade-dark: #0c5146;
  --ink: #1c302c;
  --muted: #677a74;
  --gold: #a38240;
  --line: #dce5e1;
  --paper: #f7f9f8;
  --soft: #edf5f1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
a,
input,
summary {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #a38240;
}
button {
  min-height: 44px;
}
a {
  min-height: 44px;
}
p {
  line-height: 1.75;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
}
h1,
h2 {
  letter-spacing: -0.055em;
}
h1 {
  line-height: 1.03;
}
h2 {
  line-height: 1.1;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: white;
  color: #146e5e;
  padding: 15px;
  z-index: 999;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--jade);
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  background: var(--jade);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  background: var(--jade-dark);
  transform: translateY(-1px);
}
.reference-caption {
  font-size: 9px !important;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.6 !important;
}
.site-footer {
  font-size: 11px;
  color: var(--muted);
}
.site-footer a {
  display: inline-flex;
  align-items: center;
}
[data-menu-toggle] {
  display: none;
}
@media (max-width: 760px) {
  [data-menu-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    font-size: 18px;
    color: inherit;
  }
  [data-menu] {
    display: none !important;
  }
  [data-menu].is-open {
    display: flex !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 20px 24px;
    background: white;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    z-index: 100;
  }
  [data-menu].is-open a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
  html {
    scroll-padding-top: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  background: #fff;
  color: var(--ink);
}
.wrap {
  max-width: 1160px;
  padding: 0 40px;
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fffffff5;
  border-bottom: 1px solid var(--line);
}
.header-row {
  height: 86px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 134px;
  height: 67px;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
}
.header-nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header-nav .btn {
  font-size: 10px;
  min-height: 42px;
  padding: 10px 17px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 75px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 51px;
}
.hero .eyebrow {
  font-size: 10px;
  margin-bottom: 23px;
}
.hero h1 {
  font-size: 67px;
  line-height: 1.05;
  letter-spacing: -0.064em;
  margin-bottom: 23px;
}
.hero h1 span {
  color: var(--jade);
}
.hero-intro {
  font-size: 13px;
  max-width: 380px;
  color: var(--muted);
  margin-bottom: 20px;
}
.quick-links {
  display: flex;
  gap: 24px;
  margin-bottom: 25px;
  font-size: 11px;
}
.quick-links a {
  display: flex;
  align-items: center;
  color: var(--jade);
  text-underline-offset: 4px;
}
.hero-world {
  margin: 0;
  height: 171px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.hero-world img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-world figcaption {
  position: absolute;
  left: 17px;
  bottom: 14px;
  background: #fff;
  padding: 8px 12px;
  font-size: 9px;
  color: var(--ink);
  border-radius: 4px;
}
.reference-caption {
  font-size: 8px !important;
  margin: 8px 0 0;
}
.signup-card {
  padding: 33px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
  margin-top: 0;
}
.signup-card .form-eyebrow {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 26px;
}
.signup-card .form-eyebrow span:last-child {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.signup-card h2 {
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.signup-card > p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 25px;
}
.phase-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
  gap: 45px;
}
.phase {
  display: flex;
  gap: 22px;
  align-items: center;
}
.phase small {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.phase strong {
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
}
.phase p {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
}
.phase.next {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.phase.next strong {
  color: var(--jade);
}
.world-section {
  padding: 84px 0 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.world-section h2 {
  font-size: 45px;
  margin-bottom: 24px;
}
.world-section p {
  font-size: 13px;
  color: var(--muted);
}
.world-index {
  display: flex;
  flex-direction: column;
}
.world-item {
  display: flex;
  align-items: baseline;
  gap: 25px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.world-item:last-child {
  border-bottom: 1px solid var(--line);
}
.world-item span {
  font-size: 10px;
  color: var(--gold);
}
.world-item strong {
  font-family: Barlow;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.world-item small {
  display: block;
  color: var(--muted);
  font-family: Manrope;
  font-size: 10px;
  margin-top: 7px;
  line-height: 1.6;
}
.download-section {
  background: var(--jade);
  color: white;
  padding: 75px 0;
}
.download-section .eyebrow {
  color: #c6dfd3;
}
.download-top {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  align-items: flex-end;
  margin-bottom: 36px;
}
.download-top h2 {
  font-size: 46px;
  margin: 0;
}
.download-top p {
  font-size: 12px;
  color: #d2e4dc;
  max-width: 330px;
  margin: 0;
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.download-card {
  border: 1px solid #ffffff42;
  border-radius: 10px;
  background: #ffffff06;
  padding: 26px;
}
.download-card .card-label {
  font-size: 9px;
  color: #c7e0d5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.download-card h3 {
  font-size: 29px;
  letter-spacing: -0.04em;
  margin: 20px 0 8px;
}
.download-card p {
  font-size: 11px;
  color: #d2e4dc;
  max-width: 330px;
}
.download-card .btn {
  margin-top: 13px;
  width: 100%;
  background: #fff;
  color: var(--jade);
  border-radius: 7px;
  font-size: 12px;
}
.download-card .btn:hover {
  background: #e9f3ee;
}
.download-fine {
  font-size: 9px;
  color: #c7e0d5;
  line-height: 1.7;
  margin: 18px 0 0;
}
.guide-section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.guide-grid h2 {
  font-size: 38px;
  margin-bottom: 23px;
}
.guide-grid p {
  font-size: 12px;
  color: var(--muted);
  max-width: 335px;
}
.device-tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.device-tabs button {
  padding: 14px 19px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  color: var(--muted);
}
.device-tabs button[aria-selected="true"] {
  border-color: var(--jade);
  color: var(--jade);
  font-weight: 700;
}
.device-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.device-panel .guide-label {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.device-panel h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
}
.device-panel p {
  font-size: 12px;
  max-width: 100%;
}
.device-panel a {
  color: var(--jade);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 5px;
}
.faq-section {
  border-top: 1px solid var(--line);
  padding: 67px 0 72px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq-grid h2 {
  font-size: 37px;
}
.faq-grid details {
  border-top: 1px solid var(--line);
}
.faq-grid details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-grid summary {
  display: flex;
  align-items: center;
  min-height: 69px;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-grid summary:after {
  content: "+";
  font-size: 22px;
  color: var(--jade);
  font-weight: 400;
}
.faq-grid details[open] summary:after {
  content: "−";
}
.faq-grid details p {
  font-size: 12px;
  color: var(--muted);
  padding-right: 25px;
}
.closing {
  padding: 35px 0;
  background: var(--soft);
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.closing h2 {
  font-size: 25px;
  margin: 0;
}
.closing .btn {
  font-size: 11px;
}
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
}
.footer-row img {
  width: 118px;
  height: auto;
}
.footer-row p {
  font-size: 9px;
  max-width: 400px;
  line-height: 1.7;
  margin: 0;
}
.footer-row a {
  font-size: 10px;
  display: flex;
  align-items: center;
  text-underline-offset: 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}
.footer-links [aria-current="page"] {
  color: var(--jade);
  font-weight: 700;
}
.legal-home {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--jade);
  text-underline-offset: 4px;
}
.legal-page {
  max-width: 860px;
  padding-top: 64px;
  padding-bottom: 72px;
  overflow-wrap: anywhere;
}
.legal-page h1 {
  font-size: clamp(38px, 6vw, 62px);
  margin-bottom: 18px;
}
.legal-page .legal-updated {
  font-size: 12px;
  color: var(--muted);
}
.legal-page .legal-intro {
  font-size: 18px;
  margin-bottom: 40px;
}
.legal-page section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}
.legal-page h2 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.legal-page h3 {
  font-size: 16px;
  margin: 24px 0 12px;
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.85;
}
.legal-page li {
  margin-bottom: 10px;
}
.legal-page a {
  color: var(--jade);
  text-underline-offset: 3px;
}
@media (max-width: 1000px) {
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .signup-card {
    padding: 27px;
  }
  .guide-grid,
  .faq-grid,
  .world-section {
    gap: 45px;
  }
  .download-top {
    gap: 35px;
  }
  .header-nav {
    gap: 20px;
  }
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header-row {
    height: 76px;
  }
  .brand img {
    width: 118px;
    height: 59px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 35px;
    padding-bottom: 34px;
  }
  .hero h1 {
    font-size: 51px;
    max-width: 400px;
    margin-bottom: 21px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .hero-intro {
    font-size: 12px;
  }
  .quick-links {
    margin-bottom: 20px;
    gap: 26px;
    font-size: 10px;
  }
  .hero-world {
    height: 169px;
  }
  .signup-card {
    padding: 27px 23px;
    border-radius: 12px;
  }
  .signup-card h2 {
    font-size: 28px;
  }
  .signup-card .form-eyebrow {
    font-size: 8px;
    margin-bottom: 21px;
  }
  .phase-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px 0;
  }
  .phase {
    gap: 25px;
  }
  .phase.next {
    border-left: 0;
    padding: 0;
  }
  .phase p {
    font-size: 10px;
  }
  .phase strong {
    font-size: 12px;
  }
  .world-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 55px 0;
  }
  .world-section h2 {
    font-size: 36px;
  }
  .world-section p {
    font-size: 12px;
  }
  .world-item strong {
    font-size: 25px;
  }
  .download-section {
    padding: 54px 0;
  }
  .download-top {
    display: block;
    margin-bottom: 28px;
  }
  .download-top h2 {
    font-size: 36px;
    margin-bottom: 19px;
  }
  .download-top p {
    font-size: 12px;
  }
  .download-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .download-card {
    padding: 24px;
  }
  .download-card h3 {
    margin-top: 17px;
    font-size: 29px;
  }
  .guide-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .guide-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guide-grid h2 {
    font-size: 34px;
  }
  .guide-grid > div > p {
    max-width: 100%;
  }
  .device-tabs {
    margin-bottom: 19px;
  }
  .device-panel {
    padding: 24px;
  }
  .faq-section {
    padding: 50px 0 55px;
  }
  .faq-grid h2 {
    font-size: 33px;
    margin-bottom: 13px;
  }
  .faq-grid summary {
    font-size: 11px;
  }
  .closing-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .closing h2 {
    font-size: 26px;
  }
  .closing .btn {
    font-size: 11px;
  }
  .footer-row {
    flex-wrap: wrap;
    gap: 14px 21px;
  }
  .footer-row img {
    width: 105px;
  }
  .footer-row p {
    max-width: calc(100% - 126px);
    font-size: 8px;
  }
  .footer-row a {
    font-size: 10px;
  }
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.beta-form {
  color: var(--ink);
  text-align: left;
  max-width: 600px;
  width: 100%;
}
.beta-form fieldset {
  padding: 0;
  margin: 0 0 23px;
  border: 0;
  min-width: 0;
}
.beta-form legend,
.beta-form .email-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.platform-options {
  display: flex;
  gap: 10px;
}
.platform-choice {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  background: white;
}
.platform-choice:has(input:checked) {
  border-color: var(--jade);
  background: var(--soft);
  color: var(--jade);
}
.platform-choice input {
  accent-color: var(--jade);
  width: 17px;
  height: 17px;
  flex: none;
}
.email-row {
  display: flex;
  gap: 8px;
}
.email-row input {
  width: 100%;
  min-width: 0;
  padding: 15px 17px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 14px;
}
.email-row button {
  flex: none;
  border-radius: 8px;
}
.consent {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.65;
}
.consent input {
  accent-color: var(--jade);
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 1px;
}
.form-note {
  font-size: 10px;
  color: #677a74;
  margin-top: 11px;
  line-height: 1.7;
}
.form-result {
  font-size: 12px;
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
  margin-top: 16px;
  color: var(--jade-dark);
}
.form-result.error {
  background: #fff0f1;
  color: #a32935;
}
.signup-card .preview-intro {
  margin-top: 22px;
}
.signup-card .email-row {
  flex-direction: column;
}
.signup-card .email-row button {
  margin-top: 4px;
}
.signup-card .consent {
  font-size: 10px;
}
.signup-card .form-note {
  font-size: 9px;
}
.signup-card .beta-form fieldset {
  margin-bottom: 21px;
}
@media (max-width: 760px) {
  .email-row input {
    font-size: 16px;
  }
  .email-row button {
    width: 100%;
  }
  .platform-choice {
    padding: 11px 14px;
  }
}
.device-panel:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}
