@import url(
  'https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap'
);

:root {
  --bg: #03131b;
  --bg2: #061f2b;
  --panel: #082633;

  --text: #e9f7f8;
  --muted: #8eabb3;

  --cyan: #48e1e8;
  --cyan2: #9af7f7;

  /* Store gold */
  --gold: #ffd45c;
  --gold2: #ffe59a;

  --line: rgba(150, 225, 232, .14);

  --max: 1240px;
}


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


html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}


body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


/* ================= NOISE ================= */

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;

  pointer-events: none;

  opacity: .035;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}


/* ================= NAVIGATION ================= */

.navbar {
  position: absolute;
  z-index: 20;

  top: 0;
  left: 0;

  width: 100%;

  max-width: 1500px;

  padding: 25px 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  font-family: "Barlow Condensed";
  font-weight: 900;

  font-size: 25px;

  letter-spacing: 2px;
  line-height: .8;
}


.logo b {
  display: block;

  color: var(--cyan);

  font-size: 11px;

  letter-spacing: 6px;

  margin-top: 7px;
}


.navbar nav {
  display: flex;
  gap: 30px;
}


.navbar nav a {
  color: #bdd1d5;

  font-size: 12px;

  font-weight: 600;

  transition: .2s;
}


.navbar nav a:hover {
  color: var(--cyan);
}


/* ================= NAV BUTTONS ================= */

.nav-buttons {
  display: flex;

  align-items: center;

  gap: 10px;
}


.nav-button {
  padding: 12px 18px;

  border: 1px solid rgba(72,225,232,.45);

  color: var(--cyan2);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;

  transition: .25s;
}


.nav-button:hover {
  background: var(--cyan);

  color: #03131b;
}


/* ================= STORE BUTTON ================= */

.store-button {
  border-color: rgba(255, 212, 92, .55);

  color: var(--gold);
}


.store-button:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: #03131b;

  box-shadow:
    0 0 20px rgba(255, 212, 92, .25);
}


/* ================= BUTTONS ================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 14px 22px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;

  border: 1px solid transparent;

  transition: .25s ease;

  cursor: pointer;
}


.primary {
  background: var(--cyan);

  color: #03131b;
}


.primary:hover {
  background: var(--cyan2);

  transform: translateY(-2px);
}


.ghost {
  border-color: rgba(220,245,246,.25);

  background: rgba(3,19,27,.4);

  color: var(--text);
}


.ghost:hover {
  border-color: var(--cyan);

  color: var(--cyan);
}


/* ================= HERO ================= */

.hero {
  min-height: 100vh;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;
}


.hero-bg,
.hero-vignette {
  position: absolute;

  inset: 0;
}


.hero-bg {
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(35,190,202,.25),
      transparent 27%
    ),

    linear-gradient(
      90deg,
      rgba(2,14,20,.98) 0%,
      rgba(2,19,27,.72) 48%,
      rgba(2,20,29,.25) 100%
    ),

    url("hero.png")
    center / cover
    no-repeat;

  transform: scale(1.03);
}


.hero-vignette {
  background:
    linear-gradient(
      0deg,
      var(--bg) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0,0,0,.3)
    );
}


.waves {
  position: absolute;

  left: -10%;
  bottom: -130px;

  width: 120%;
  height: 260px;

  opacity: .13;

  background:
    repeating-radial-gradient(
      ellipse at 50% 100%,
      transparent 0 35px,
      var(--cyan) 37px 39px,
      transparent 41px 72px
    );

  transform:
    perspective(350px)
    rotateX(55deg);
}


.hero-content {
  position: relative;

  z-index: 2;

  width: min(var(--max), 90%);

  margin: auto;

  padding-top: 60px;
}


.eyebrow,
.section-kicker {
  color: var(--cyan);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 3px;
}


.pulse {
  display: inline-block;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--cyan);

  box-shadow:
    0 0 14px var(--cyan);

  margin-right: 8px;
}


.hero h1,
h2 {
  font-family: "Barlow Condensed";

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: -1px;

  line-height: .88;
}


.hero h1 {
  font-size: clamp(
    70px,
    10vw,
    145px
  );

  margin: 22px 0;

  max-width: 850px;
}


em {
  color: var(--cyan);

  font-style: normal;
}


.hero-copy {
  max-width: 650px;

  color: #b8cdd1;

  font-size: 16px;

  line-height: 1.8;
}


.hero-copy strong {
  color: var(--text);
}


.hero-actions {
  display: flex;

  gap: 12px;

  margin-top: 30px;

  flex-wrap: wrap;
}


/* ================= SERVER CARD ================= */

.server-card {
  width: min(720px, 100%);

  margin-top: 50px;

  padding: 17px 20px;

  border: 1px solid var(--line);

  background:
    rgba(4,27,37,.72);

  backdrop-filter: blur(12px);

  display: flex;

  align-items: center;

  gap: 20px;
}


.status {
  color: #83f1cf;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.status span {
  display: inline-block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #83f1cf;

  box-shadow:
    0 0 10px #83f1cf;

  margin-right: 6px;
}


.server-card div:nth-child(2) {
  flex: 1;
}


.server-card small,
.ip-box small {
  display: block;

  color: var(--muted);

  font-size: 8px;

  letter-spacing: 2px;

  margin-bottom: 4px;
}


.server-card strong {
  font-family: "Barlow Condensed";

  font-size: 20px;

  letter-spacing: 1px;
}


.copy-ip {
  border: 0;

  cursor: pointer;

  background: transparent;

  color: var(--cyan);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* ================= SCROLL ================= */

.scroll {
  position: absolute;

  right: 5%;
  bottom: 35px;

  color: var(--muted);

  font-size: 8px;

  letter-spacing: 3px;

  z-index: 2;
}


.scroll span {
  color: var(--cyan);

  margin-left: 8px;
}


/* ================= SECTIONS ================= */

.section {
  padding:
    140px
    max(
      6%,
      calc((100% - var(--max)) / 2)
    );
}


h2 {
  font-size: clamp(
    52px,
    7vw,
    92px
  );
}


/* ================= ABOUT ================= */

.intro {
  background:
    linear-gradient(
      180deg,
      var(--bg),
      #041a24
    );
}


.intro-grid,
.heading-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 90px;

  margin-top: 45px;
}


.intro-text {
  max-width: 580px;

  color: var(--muted);

  line-height: 1.9;
}


.intro-text p {
  margin-bottom: 22px;
}


.intro-text .lead {
  color: var(--text);

  font-size: 21px;

  line-height: 1.6;
}


.intro-text strong {
  color: var(--cyan2);
}


/* ================= STATS ================= */

.stats {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  border-top:
    1px solid var(--line);

  margin-top: 90px;
}


.stats div {
  padding: 30px 15px;

  border-right:
    1px solid var(--line);
}


.stats div:last-child {
  border: 0;
}


.stats strong {
  display: block;

  font-family:
    "Barlow Condensed";

  font-size: 46px;

  color: var(--cyan);
}


.stats span {
  font-size: 8px;

  letter-spacing: 2px;

  color: var(--muted);
}


/* ================= FEATURES ================= */

.features {
  background: #021018;
}


.heading-row > p {
  max-width: 430px;

  color: var(--muted);

  line-height: 1.8;

  align-self: end;
}


.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 12px;

  margin-top: 65px;
}


.feature-card {
  min-height: 470px;

  position: relative;

  overflow: hidden;

  background:
    var(--panel)
    center / cover
    no-repeat;

  border: 1px solid var(--line);
}


.card-island {
  background-image:
    url("island.png");
}


.card-sail {
  background-image:
    url("sailing.png");
}


.card-pirate {
  background-image:
    url("pirate.png");
}


.card-depth {
  background-image:
    url("underwater.png");
}


.card-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(2,12,18,.98),
      rgba(2,20,28,.1) 75%
    );
}


.card-content {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 25px;
}


.card-content span {
  color: var(--cyan);

  font:
    700 12px
    "Barlow Condensed";
}


.card-content h3 {
  font:
    700 28px
    "Barlow Condensed";

  margin: 10px 0;
}


.card-content p {
  color: #a9c0c5;

  font-size: 12px;

  line-height: 1.7;
}


/* ================= WORLD ================= */

.world {
  min-height: 760px;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;
}


.world-image {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2,14,20,.97),
      rgba(2,16,23,.7),
      rgba(2,17,24,.2)
    ),

    url("world.png")
    center / cover;
}


.world-content {
  position: relative;

  z-index: 2;

  width: min(600px, 90%);

  margin-left:
    max(
      6%,
      calc((100% - var(--max)) / 2)
    );
}


.world-content h2 {
  margin: 20px 0 30px;
}


.world-content p {
  color: #b1c8cc;

  line-height: 1.8;

  margin-bottom: 18px;
}


.quote {
  margin-top: 40px;

  padding-left: 18px;

  border-left:
    2px solid var(--cyan);

  color: var(--cyan2);

  font:
    600 15px/1.6
    "Barlow Condensed";

  letter-spacing: 1px;
}


/* ================= STEPS ================= */

.steps {
  background: #041b25;
}


.steps > h2 {
  margin-top: 20px;
}


.step-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 0;

  margin-top: 70px;

  border-top:
    1px solid var(--line);
}


.step {
  padding:
    35px 25px
    25px 0;

  border-right:
    1px solid var(--line);

  margin-right: 25px;
}


.step:last-child {
  border: 0;
}


.step b {
  color: var(--cyan);

  font:
    700 13px
    "Barlow Condensed";
}


.step h3 {
  font:
    700 25px
    "Barlow Condensed";

  margin: 18px 0 10px;
}


.step p {
  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;
}


/* ================= FAQ ================= */

.faq {
  background: #021018;
}


.faq > h2 {
  margin-top: 20px;
}


.faq-list {
  max-width: 900px;

  margin: 70px auto 0;
}


details {
  border-top:
    1px solid var(--line);
}


details:last-child {
  border-bottom:
    1px solid var(--line);
}


summary {
  list-style: none;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  padding: 25px 5px;

  font:
    600 22px
    "Barlow Condensed";
}


summary::-webkit-details-marker {
  display: none;
}


summary span {
  color: var(--cyan);

  font-family: Inter;

  font-size: 20px;

  transition: .2s;
}


details[open]
summary span {
  transform:
    rotate(45deg);
}


details p {
  color: var(--muted);

  line-height: 1.8;

  padding:
    0 5px 28px;

  max-width: 760px;

  font-size: 13px;
}


/* ================= PLAY ================= */

.play {
  position: relative;

  padding: 150px 6%;

  text-align: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      #0a3a4b 0,
      #03131b 52%,
      #020d13 100%
    );
}


.play-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    rgba(72,225,232,.1);

  filter: blur(80px);

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);
}


.play-content {
  position: relative;

  max-width: 750px;

  margin: auto;
}


.play-content h2 {
  margin: 20px 0;
}


.play-content > p {
  color: #a9c1c5;

  line-height: 1.8;
}


.ip-box {
  margin:
    40px auto 25px;

  padding: 25px;

  max-width: 520px;

  border:
    1px solid
    rgba(72,225,232,.3);

  background:
    rgba(2,16,24,.55);
}


.ip-box strong {
  display: block;

  font:
    700 28px
    "Barlow Condensed";

  letter-spacing: 1px;

  margin: 5px 0 18px;
}


/* ================= FOOTER ================= */

footer {
  padding: 45px 6%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 25px;

  border-top:
    1px solid var(--line);

  color: #63818a;

  font-size: 10px;
}


.footer-logo {
  font:
    900 22px
    "Barlow Condensed";

  color: var(--text);

  letter-spacing: 2px;
}


.footer-logo span {
  color: var(--cyan);
}


.footer-links {
  display: flex;

  gap: 20px;
}


.footer-links a:hover {
  color: var(--cyan);
}


/* ================= TOAST ================= */

.toast {
  position: fixed;

  z-index: 200;

  right: 25px;
  bottom: 25px;

  padding: 12px 16px;

  background: var(--cyan);

  color: #03131b;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1px;

  transform:
    translateY(80px);

  opacity: 0;

  transition: .25s;
}


.toast.show {
  transform:
    translateY(0);

  opacity: 1;
}


/* ================= TABLET ================= */

@media (max-width: 1000px) {

  .navbar nav {
    display: none;
  }

  .feature-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .step-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .step:nth-child(2) {
    border-right: 0;
  }

}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

  .navbar {
    padding: 20px 6%;
  }


  .nav-buttons {
    gap: 6px;
  }


  .nav-button {
    padding: 10px 10px;

    font-size: 8px;
  }


  .hero-content {
    padding-top: 90px;
  }


  .hero h1 {
    font-size: 64px;
  }


  .server-card {
    flex-wrap: wrap;
  }


  .server-card div:nth-child(2) {
    min-width: 180px;
  }


  .intro-grid,
  .heading-row {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .stats {
    grid-template-columns:
      repeat(2,1fr);
  }


  .stats div {
    border-bottom:
      1px solid var(--line);
  }


  .feature-grid {
    grid-template-columns: 1fr;
  }


  .feature-card {
    min-height: 390px;
  }


  .world {
    min-height: 680px;
  }


  .step-grid {
    grid-template-columns: 1fr;
  }


  .step {
    border-right: 0;

    border-bottom:
      1px solid var(--line);

    padding: 28px 0;

    margin: 0;
  }


  footer {
    flex-direction: column;

    align-items: flex-start;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 430px) {

  h2 {
    font-size: 48px;
  }


  .hero h1 {
    font-size: 54px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .button {
    width: 100%;
  }


  .nav-buttons {
    gap: 4px;
  }


  .nav-button {
    padding: 9px 8px;

    font-size: 7px;
  }

}
