:root {
  --bg-y: 50%;
  --depth-x: 0px;

  --white: #fffdfd;
  --white-soft: rgba(255, 253, 253, .78);
  --white-faint: rgba(255, 253, 253, .53);

  --plum: #8f176e;
  --ink-deep: #32132c;
  --gold: #d9b85d;
  --gold-soft: rgba(226, 195, 105, .46);

  --x-a: #f3fbff;
  --x-b: #b9e0ff;
  --x-c: #83b9ed;

  --ig-a: #fff1df;
  --ig-b: #ffc48f;
  --ig-c: #e99a76;

  --discord-a: #efe7ff;
  --discord-b: #c7a4ff;
  --discord-c: #9b77e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #32212f;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--white);
  background: #32212f;
  font-family:
    "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    "Noto Serif JP", "Times New Roman", serif;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: clip;
}

/* ---------------- Fixed artwork / atmosphere ---------------- */

.art-layer {
  position: fixed;
  inset: -4%;
  z-index: -10;
  background-image: url("assets/awaimusubi-theme.png");
  background-size: cover;
  background-position: center var(--bg-y);
  filter: saturate(.88) brightness(.76) contrast(.93);
  transform: scale(1.06);
  will-change: background-position, transform;
  animation: livingArt 18s ease-in-out infinite alternate;
}

.art-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62,25,55,.34), transparent 22%, transparent 78%, rgba(62,25,55,.34)),
    radial-gradient(circle at center, rgba(43,19,39,.05) 0 25%, rgba(49,22,45,.18) 74%, rgba(39,16,35,.33) 100%);
}

@keyframes livingArt {
  from { transform: scale(1.055); }
  to   { transform: scale(1.078); }
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: -6;
  translate: calc(var(--depth-x) * -0.14) 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 15% 20%, rgba(255,255,255,.16) 0 0.45px, transparent .7px 4px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.depth-veil {
  position: fixed;
  inset: 0;
  z-index: -7;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(48,20,43,.05) 0%,
      rgba(52,22,46,.14) 43%,
      rgba(38,15,35,.28) 100%);
}

.edge-glow {
  position: fixed;
  inset: 0;
  z-index: -5;
  translate: calc(var(--depth-x) * .08) 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 150px rgba(255,248,254,.13),
    inset 0 0 48px rgba(255,248,254,.08);
}

.mist {
  position: fixed;
  z-index: -8;
  width: 70vw;
  height: 25vw;
  min-height: 170px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: .28;
  background: radial-gradient(ellipse, rgba(255,247,253,.74), rgba(255,255,255,0));
  pointer-events: none;
}

.mist-a {
  left: -24vw;
  top: 12vh;
  translate: calc(var(--depth-x) * .54) 0;
  animation: mistA 20s ease-in-out infinite alternate;
}

.mist-b {
  right: -20vw;
  bottom: 8vh;
  translate: calc(var(--depth-x) * -.38) 0;
  animation: mistB 24s ease-in-out infinite alternate;
}

@keyframes mistA {
  to { transform: translate3d(28vw, 6vh, 0) scale(1.08); }
}
@keyframes mistB {
  to { transform: translate3d(-26vw, -5vh, 0) scale(.95); }
}

/* ---------------- Navigation ---------------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 4vw, 64px);
  pointer-events: none;
}

.brand-mark {
  pointer-events: auto;
  text-decoration: none;
  opacity: .78;
  letter-spacing: .14em;
  text-shadow: 0 2px 17px rgba(42,16,38,.48);
}

.brand-jp {
  font-size: .82rem;
  color: var(--white-soft);
}

.language-wrap {
  position: relative;
  pointer-events: auto;
}

.language-button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 15px 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: rgba(49,24,44,.27);
  box-shadow:
    0 9px 30px rgba(38,15,34,.14),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(15px) saturate(1.05);
  -webkit-backdrop-filter: blur(15px) saturate(1.05);
  cursor: pointer;
  transition: .25s ease;
}

.language-button:hover,
.language-button:focus-visible {
  background: rgba(63,29,55,.42);
  border-color: rgba(255,255,255,.43);
  transform: translateY(-1px);
  outline: none;
}

.world-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
}

.chevron {
  width: 9px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  opacity: .64;
  transition: transform .2s ease;
}

.language-button[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

#languageShort {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: .71rem;
  letter-spacing: .14em;
  font-weight: 500;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 176px;
  padding: 7px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(49,24,44,.76);
  box-shadow: 0 20px 52px rgba(35,14,31,.2);
  backdrop-filter: blur(20px) saturate(1.06);
  -webkit-backdrop-filter: blur(20px) saturate(1.06);
  transform-origin: top right;
  animation: menuIn .18s ease both;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-5px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.language-option {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white-soft);
  border-radius: 11px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: .18s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(255,255,255,.09);
  color: var(--white);
  outline: none;
}

.language-option span {
  font-size: .86rem;
}

.language-option small {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: .62rem;
  letter-spacing: .12em;
  opacity: .57;
}

/* ---------------- Welcome ---------------- */

.hero {
  position: relative;
  z-index: 5;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 110px 24px 82px;
}

.hero-side {
  position: absolute;
  top: 50%;
  width: clamp(250px, 24vw, 390px);
  z-index: 12;
  transform: translateY(-50%);
}

.hero-side-left {
  left: clamp(32px, 4vw, 72px);
  text-align: left;
}

.hero-side-right {
  right: clamp(32px, 4vw, 72px);
  text-align: left;
}

.hero-side .gloss-title {
  font-size: clamp(1.2rem, 1.55vw, 1.7rem);
}

.hero-side .feature-title {
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
}

.hero-side .feature-copy {
  max-width: 340px;
  font-size: clamp(.78rem, .82vw, .92rem);
  line-height: 1.55;
}

.hero-side .social-list {
  margin-top: 18px;
  gap: 10px;
}

.hero-side .social-link {
  min-height: 39px;
}

.hero-side .coming-soon {
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep the centered welcome visually dominant while side content frames it. */
.hero-inner {
  position: relative;
  z-index: 15;
  width: min(650px, 46vw);
}

.hero-inner {
  width: min(650px, 46vw);
  text-align: center;
  transform: translateY(-1vh);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  font-size: clamp(2rem, 3.15vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: .075em;
  text-shadow:
    0 1px 1px rgba(39,13,34,.35),
    0 8px 31px rgba(64,20,53,.38),
    0 0 15px rgba(255,255,255,.13);
  animation: titleEnter 1.25s cubic-bezier(.2,.8,.25,1) .08s both;
}

.subtext {
  margin: 13px 0 0;
  color: var(--white-soft);
  font-size: clamp(.74rem, 1vw, .9rem);
  letter-spacing: .34em;
  text-indent: .34em;
  text-shadow: 0 5px 18px rgba(50,18,44,.32);
  animation: titleEnter 1.25s cubic-bezier(.2,.8,.25,1) .25s both;
}

@keyframes titleEnter {
  from {
    opacity: 0;
    transform: translateY(11px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-inner.is-changing h1,
.hero-inner.is-changing .subtext {
  animation: textSwap .42s ease both;
}

@keyframes textSwap {
  0% { opacity: 1; transform: translateY(0); }
  42% { opacity: 0; transform: translateY(-4px); filter: blur(3px); }
  58% { opacity: 0; transform: translateY(4px); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: min(220px, 45vw);
  opacity: .62;
}

.ornament-top { margin-bottom: 23px; }
.ornament-bottom { margin-top: 23px; }

.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}
.ornament i {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(235,205,117,.75);
  transform: rotate(45deg);
}

/* ---------------- Long scrolling hub ---------------- */

.stage {
  position: relative;
  z-index: 10;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: center;
  column-gap: clamp(70px, 11vw, 190px);
  padding: clamp(95px, 11vh, 145px) clamp(42px, 7vw, 115px);
}

.stage-connect {
  padding-top: clamp(120px, 15vh, 180px);
}

.stage-community {
  min-height: 88vh;
  padding-top: clamp(80px, 10vh, 130px);
}

.stage-left {
  justify-self: start;
  width: min(660px, 100%);
}

.stage-right {
  justify-self: end;
  width: min(480px, 100%);
}

.gloss-title,
.feature-title {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  letter-spacing: .075em;
  text-shadow:
    0 1px 0 rgba(255,255,255,.28),
    0 5px 22px rgba(49,17,42,.42),
    0 0 12px rgba(255,255,255,.09);
}

.gloss-title {
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
}

.compact-title {
  font-size: clamp(1.24rem, 1.65vw, 1.75rem);
  letter-spacing: .045em;
}

.feature-title {
  font-size: clamp(1.45rem, 2vw, 2.12rem);
  line-height: 1.35;
}

.feature-copy {
  margin: 9px 0 0;
  color: var(--white);
  font-size: clamp(.94rem, 1.05vw, 1.08rem);
  line-height: 1.75;
  letter-spacing: .012em;
  text-shadow: 0 4px 17px rgba(43,14,37,.42);
}

.coming-soon {
  width: max-content;
  margin: clamp(42px, 7vh, 76px) auto 0;
  color: var(--white-soft);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: lowercase;
  text-shadow:
    0 1px 0 rgba(255,255,255,.23),
    0 0 11px rgba(255,255,255,.14);
}

.promo-card {
  text-align: left;
}

.copy-block + .copy-block {
  margin-top: 38px;
}

.rule-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0 0;
  color: var(--white);
  font-size: clamp(.85rem, .95vw, 1rem);
  line-height: 1.6;
  text-shadow: 0 4px 17px rgba(43,14,37,.35);
}

.solid-rule {
  flex: 0 0 clamp(40px, 5vw, 78px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.8));
  box-shadow: 0 0 8px rgba(255,255,255,.13);
}

.soft-line {
  color: rgba(255,255,255,.76);
  font-size: clamp(.76rem, .84vw, .9rem);
  text-shadow:
    0 0 8px rgba(255,255,255,.12),
    0 4px 15px rgba(43,14,37,.35);
}

.soft-line .solid-rule {
  opacity: .68;
}

.promo-rule {
  margin-top: 10px;
}

.promo-rule .solid-rule {
  flex-basis: clamp(34px, 4vw, 60px);
}

/* ---------------- Social links ---------------- */

.social-list {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.social-link,
.discord-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 10px 6px 2px;
  text-decoration: none;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: .08em;
  isolation: isolate;
  transition: filter .35s ease, text-shadow .35s ease;
}

.social-link::before,
.discord-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -11px -19px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(15px);
  transform: scale(.78);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}

.social-link:hover::before,
.social-link:focus-visible::before,
.discord-link:hover::before,
.discord-link:focus-visible::before {
  opacity: .68;
  transform: scale(1);
}

.social-link:focus-visible,
.discord-link:focus-visible {
  outline: 1px solid rgba(255,255,255,.6);
  outline-offset: 7px;
  border-radius: 12px;
}

.social-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.11));
  transition: transform .62s cubic-bezier(.17,.84,.25,1), filter .4s ease;
}

.icon-x {
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  line-height: 1;
}

.svg-icon {
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  opacity: 1;
  visibility: visible;
}

.youtube-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}
.youtube-play {
  fill: currentColor;
  stroke: none;
}

.discord-icon {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.social-x {
  color: var(--x-b);
}
.social-x .letter {
  background: linear-gradient(105deg, var(--x-a), var(--x-b) 48%, var(--x-c));
}

.social-x::before {
  background: radial-gradient(ellipse, rgba(130,190,239,.24), transparent 68%);
}

.social-instagram {
  color: var(--ig-b);
}
.social-instagram .letter {
  background: linear-gradient(105deg, var(--ig-a), var(--ig-b) 48%, var(--ig-c));
}
.social-instagram::before {
  background: radial-gradient(ellipse, rgba(238,161,116,.25), transparent 68%);
}

.social-youtube {
  color: var(--white);
}
.social-youtube .letter {
  background: linear-gradient(105deg, #ffffff, #f2ebf1 50%, #ffffff);
}
.social-youtube::before {
  background: radial-gradient(ellipse, rgba(255,255,255,.14), transparent 68%);
}

.social-discord {
  margin-top: 43px;
  color: var(--discord-b);
}
.social-discord .letter {
  background: linear-gradient(105deg, var(--discord-a), var(--discord-b) 50%, var(--discord-c));
}
.social-discord::before {
  background: radial-gradient(ellipse, rgba(163,119,232,.25), transparent 70%);
}

.letter-source {
  display: inline-flex;
  align-items: baseline;
  color: inherit;
  opacity: 1;
  visibility: visible;
}

.letter {
  display: inline-block;
  color: transparent;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  transform-origin: 50% 78%;
  transition:
    transform .58s cubic-bezier(.16,.86,.25,1),
    filter .5s ease;
  transition-delay: calc(var(--i) * 22ms);
  text-shadow: none;
}

.letter.space {
  width: .34em;
  background: none !important;
}

.animated-letters:hover .letter:not(.space),
.animated-letters:focus-visible .letter:not(.space) {
  transform: scale(1.16) translateY(-1px);
  filter: brightness(1.18);
}

.animated-letters:hover .social-icon,
.animated-letters:focus-visible .social-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 7px currentColor);
}

.animated-letters::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 3px;
  bottom: 3px;
  left: 31px;
  width: 28%;
  opacity: 0;
  transform: translateX(-80%) skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.04),
    rgba(255,255,255,.43),
    rgba(255,255,255,.05),
    transparent
  );
  filter: blur(.3px);
}

.animated-letters:hover::after,
.animated-letters:focus-visible::after {
  animation: glossSweep .78s ease both;
}

@keyframes glossSweep {
  0% { opacity: 0; transform: translateX(-70%) skewX(-20deg); }
  18% { opacity: .75; }
  100% { opacity: 0; transform: translateX(285%) skewX(-20deg); }
}

/* ---------------- Footer ---------------- */

.site-footer {
  position: relative;
  z-index: 10;
  min-height: 31vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 75px 26px 54px;
  text-align: center;
}

.footer-help {
  margin: 0;
  color: var(--white);
  font-size: clamp(.88rem, 1vw, 1.04rem);
  letter-spacing: .025em;
  text-shadow:
    0 1px 0 rgba(255,255,255,.2),
    0 0 11px rgba(255,255,255,.11),
    0 5px 18px rgba(42,14,36,.45);
}

.footer-email {
  margin-top: 9px;
  color: var(--white-soft);
  text-decoration: none;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: .76rem;
  letter-spacing: .085em;
  text-shadow:
    0 1px 0 rgba(255,255,255,.16),
    0 0 8px rgba(255,255,255,.1);
  transition: color .25s ease, text-shadow .25s ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255,255,255,.25),
    0 0 20px rgba(255,255,255,.12);
  outline: none;
}

/* ---------------- Sakura ---------------- */

.petal-field {
  position: fixed;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -8vh;
  left: var(--x);
  width: var(--size);
  height: calc(var(--size) * .7);
  border-radius: 75% 25% 72% 28% / 70% 38% 62% 30%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.83), transparent 30%),
    linear-gradient(145deg, rgba(246,205,228,.79), rgba(205,126,176,.45));
  box-shadow: inset -2px -1px 3px rgba(132,48,104,.11);
  opacity: var(--opacity);
  transform: rotate(var(--tilt));
  animation: petalFall var(--duration) linear var(--delay) infinite;
  filter: blur(var(--blur));
}

.petal::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 1px;
  left: 18%;
  top: 52%;
  background: rgba(145,63,112,.17);
  transform: rotate(-13deg);
  transform-origin: left center;
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(var(--tilt)) rotateX(0deg);
  }
  25% {
    transform: translate3d(var(--drift-a), 28vh, 0) rotate(calc(var(--tilt) + 95deg)) rotateX(120deg);
  }
  55% {
    transform: translate3d(var(--drift-b), 60vh, 0) rotate(calc(var(--tilt) + 190deg)) rotateX(230deg);
  }
  100% {
    transform: translate3d(var(--drift-c), 116vh, 0) rotate(calc(var(--tilt) + 390deg)) rotateX(360deg);
  }
}

/* ---------------- Scroll reveals ---------------- */

.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

/* Animation is decorative only; content never depends on JS to exist. */
.reveal.reveal-ready {
  animation: gentleReveal .9s cubic-bezier(.18,.8,.2,1) both;
}

@keyframes gentleReveal {
  from {
    opacity: .08;
    transform: translateY(16px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ---------------- Responsive ---------------- */

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-top: 150px;
    padding-bottom: 110px;
  }

  .hero-inner {
    width: min(560px, 92vw);
    order: 1;
  }

  .hero-side {
    position: static;
    width: min(520px, 92vw);
    transform: none;
  }

  .hero-side-left {
    order: 2;
    align-self: flex-start;
  }

  .hero-side-right {
    order: 3;
    align-self: flex-end;
  }

  .topbar {
    padding: 18px 17px;
  }

  .brand-jp {
    font-size: .68rem;
  }

  .language-button {
    min-height: 41px;
    padding-inline: 12px;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
    letter-spacing: .045em;
  }

  .art-layer {
    inset: -8%;
    background-size: auto 108%;
    background-position: center 50%;
  }

  .stage {
    min-height: unset;
    grid-template-columns: 1fr;
    gap: 95px;
    padding: 110px 28px;
  }

  .stage-right,
  .stage-left {
    justify-self: stretch;
    width: 100%;
  }

  .promo-card {
    max-width: 520px;
    margin-left: auto;
  }

  .site-footer {
    min-height: 28vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}


.x-svg {
  display: block;
  fill: currentColor;
  stroke: none;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .hero-side {
    width: clamp(210px, 22vw, 280px);
  }

  .hero-side-left {
    left: 24px;
  }

  .hero-side-right {
    right: 24px;
  }

  .hero-side .gloss-title,
  .hero-side .feature-title {
    font-size: 1.05rem;
  }

  .hero-side .feature-copy,
  .hero-side .social-link {
    font-size: .78rem;
  }

  .hero-inner {
    width: 44vw;
  }
}
