:root {
  --bg: #050505;
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.7);
  --line: rgba(247, 244, 238, 0.18);
  --heat: #ff7a1a;
  --steel: #9fb7bc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.cursor-hot .cursor-orbit {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 122, 26, 0.82);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.22), transparent 56%);
}

body.is-scrolling .spark-layer {
  opacity: 1;
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0));
}

.sound-toggle {
  position: fixed;
  z-index: 22;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  gap: 10px;
  min-height: 44px;
  border-color: rgba(247, 244, 238, 0.24);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(18px);
}

.scroll-energy {
  position: fixed;
  z-index: 21;
  top: 22vh;
  right: clamp(9px, 1.4vw, 18px);
  width: 2px;
  height: 48vh;
  background: rgba(247, 244, 238, 0.12);
  pointer-events: none;
}

.scroll-energy span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress, 0) * 100%);
  background: linear-gradient(180deg, #fff, var(--heat), rgba(255, 122, 26, 0));
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.82);
}

.spark-layer {
  position: fixed;
  z-index: 18;
  inset: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(255, 190, 112, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 122, 26, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(247, 244, 238, 0.46) 0 1px, transparent 2px);
  background-position:
    calc(var(--spark-x, 0px) + 8vw) calc(var(--spark-y, 0px) + 22vh),
    calc(var(--spark-x, 0px) + 74vw) calc(var(--spark-y, 0px) + 44vh),
    calc(var(--spark-x, 0px) + 36vw) calc(var(--spark-y, 0px) + 78vh);
  background-size: 180px 220px, 240px 260px, 210px 250px;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.vinyl-widget {
  position: fixed;
  z-index: 21;
  left: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  width: 84px;
  height: 84px;
  min-height: 0;
  border: 1px solid rgba(255, 122, 26, 0.36);
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.2);
  translate: var(--vinyl-x, 0px) var(--vinyl-y, 0px);
  touch-action: none;
  user-select: none;
  cursor: grab;
  transition: scale 180ms ease, box-shadow 180ms ease;
}

.vinyl-widget img {
  display: block;
  width: 150%;
  height: 150%;
  margin: -25%;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  animation: vinylSpin 6s linear infinite;
}

.vinyl-widget.is-dragging {
  cursor: grabbing;
  scale: 1.08;
  box-shadow: 0 0 38px rgba(255, 122, 26, 0.38);
  transition: scale 160ms ease, box-shadow 160ms ease;
}

.vinyl-widget.is-dragging img {
  animation-duration: 1.6s;
}

.vinyl-hint {
  position: fixed;
  z-index: 22;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(110px, calc(3vw + 88px), 126px);
  max-width: 180px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 122, 26, 0.34);
  background: rgba(7, 7, 7, 0.78);
  color: #fff7ed;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 122, 26, 0.14);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  opacity: 0;
  transform: translate3d(-8px, 8px, 0) scale(0.96);
  animation: vinylHint 7s ease forwards;
}

.vinyl-hint::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(255, 122, 26, 0.34);
  border-bottom: 1px solid rgba(255, 122, 26, 0.34);
  background: rgba(7, 7, 7, 0.78);
  rotate: 45deg;
}

.vinyl-hint.is-hidden {
  animation: none;
  opacity: 0;
  transform: translate3d(-8px, 8px, 0) scale(0.96);
}

@keyframes vinylSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes vinylHint {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-8px, 8px, 0) scale(0.96);
  }

  2%,
  76% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.cursor-orbit {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 244, 238, 0.34);
  border-radius: 50%;
  translate: calc(var(--cursor-x, -100px) - 50%) calc(var(--cursor-y, -100px) - 50%);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.24) 0 2px, transparent 3px);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

body.cursor-ready .cursor-orbit {
  opacity: 1;
}

.tap-ripple {
  position: fixed;
  z-index: 31;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 122, 26, 0.84);
  border-radius: 50%;
  translate: calc(var(--tap-x, -100px) - 50%) calc(var(--tap-y, -100px) - 50%);
  opacity: 0;
  scale: 0.25;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.24), transparent 62%);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.28);
  pointer-events: none;
}

.tap-ripple.is-active {
  animation: tapRipple 520ms ease-out;
}

@keyframes tapRipple {
  0% {
    opacity: 0.95;
    scale: 0.22;
  }

  100% {
    opacity: 0;
    scale: 1.3;
  }
}

.sound-toggle.is-playing {
  border-color: rgba(255, 122, 26, 0.72);
}

.sound-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 14px;
}

.sound-bars i {
  display: block;
  width: 3px;
  height: 6px;
  background: currentColor;
  transform-origin: bottom;
}

.sound-bars i:nth-child(2) {
  height: 12px;
}

.sound-bars i:nth-child(3) {
  height: 9px;
}

.sound-toggle.is-playing .sound-bars i {
  animation: soundPulse 760ms ease-in-out infinite alternate;
}

.sound-toggle.is-playing .sound-bars i:nth-child(2) {
  animation-delay: 120ms;
}

.sound-toggle.is-playing .sound-bars i:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes soundPulse {
  from {
    scale: 1 0.45;
  }

  to {
    scale: 1 1;
  }
}

.brand img {
  display: block;
  width: clamp(128px, 18vw, 220px);
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

nav {
  display: flex;
  gap: 0;
  border: 1px solid rgba(247, 244, 238, 0.14);
  background: rgba(5, 5, 5, 0.32);
  color: rgba(247, 244, 238, 0.74);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

nav a {
  position: relative;
  min-width: 112px;
  padding: 13px 18px 12px;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, text-shadow 180ms ease;
}

nav a + a {
  border-left: 1px solid rgba(247, 244, 238, 0.12);
}

nav a::before,
nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--heat), transparent);
  opacity: 0;
  scale: 0.4 1;
  transition: opacity 180ms ease, scale 180ms ease;
}

nav a::before {
  top: 6px;
}

nav a::after {
  bottom: 6px;
}

nav a:hover,
nav a:focus-visible {
  color: #fff7ed;
  background: rgba(255, 122, 26, 0.1);
  text-shadow: 0 0 18px rgba(255, 122, 26, 0.36);
}

nav a:hover::before,
nav a:hover::after,
nav a:focus-visible::before,
nav a:focus-visible::after {
  opacity: 1;
  scale: 1 1;
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  display: grid;
  align-items: end;
  padding: 110px clamp(22px, 6vw, 88px) 70px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 24vh;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.28) 58%, transparent);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(180deg, black 0 58%, transparent 100%);
  pointer-events: none;
}

.hero-image,
.ambient-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.hero-image {
  top: -9%;
  height: 132%;
  scale: 1.14;
  object-position: 52% 44%;
  transform-origin: center top;
  will-change: transform;
}

.parallax {
  --scroll-offset: 0px;
  --mouse-x: 0px;
  --mouse-y: 0px;
  transform: translate3d(var(--mouse-x), calc(var(--scroll-offset) + var(--mouse-y)), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-frame {
  position: absolute;
  z-index: 1;
  right: 8vw;
  top: 22vh;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 122, 26, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 122, 26, 0.14), transparent 54%);
  background-size: 38px 38px, 38px 38px, auto;
  filter: blur(1px);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 34%;
  height: 34%;
  border-color: rgba(255, 122, 26, 0.7);
  border-style: solid;
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 70% 38%, black, transparent 58%);
  opacity: 0.16;
  pointer-events: none;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.08) 55%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .hero-copy .eyebrow {
    margin-bottom: 34px;
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 12vw, 168px);
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(38px, 7vw, 104px);
  line-height: 0.94;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 118px);
  line-height: 0.9;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 30px);
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
button:hover {
  border-color: var(--heat);
  background: var(--heat);
  color: #090502;
}

.button.ghost:hover {
  border-color: var(--text);
}

.manifest {
  display: grid;
  align-items: center;
  padding: 90px clamp(22px, 6vw, 88px);
}

.manifest-video {
  height: 112%;
  filter: saturate(0.76) contrast(1.08);
}

.manifest-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.42) 62%, rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.9));
}

.manifest-word {
  position: absolute;
  z-index: 1;
  right: -3vw;
  bottom: 5vh;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(84px, 17vw, 250px);
  font-weight: 950;
  line-height: 0.8;
  white-space: nowrap;
}

.manifest-grid {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.manifest-grid p:last-child,
.cinematic-copy p,
.tunnel-copy p,
.split-copy p,
.journey-intro p,
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.cinematic {
  display: grid;
  align-items: end;
  min-height: 115svh;
  padding: 90px clamp(22px, 6vw, 88px);
}

.cinematic .ambient-video {
  height: 112%;
  filter: saturate(0.9) contrast(1.05);
}

.tunnel {
  display: grid;
  align-items: center;
  padding: 90px clamp(22px, 6vw, 88px);
  background: #030303;
}

.tunnel-video {
  height: 112%;
  filter: saturate(0.9) contrast(1.04);
}

.tunnel-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 122, 26, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.86), rgba(3, 3, 3, 0.18) 48%, rgba(3, 3, 3, 0.82)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.84), rgba(3, 3, 3, 0.22) 44%, rgba(3, 3, 3, 0.88));
}

.tunnel-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.88)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.2) 62%);
}

.cinematic-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.split {
  display: grid;
  align-items: end;
  padding: 90px clamp(22px, 6vw, 88px);
}

.split::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.25));
}

.split.reverse::after {
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.25));
}

.split-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.reverse .split-copy {
  justify-self: end;
}

.journey {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 122, 26, 0.16), transparent 28%),
    #080808;
}

.journey-intro,
.contact {
  display: grid;
  align-content: center;
  padding: 90px clamp(22px, 6vw, 88px);
}

.journey-intro > .eyebrow,
.journey-intro > h2,
.journey-intro > p,
.contact > div,
.quote-box {
  position: relative;
  z-index: 2;
}

.journey-video {
  height: 112%;
  filter: saturate(0.88) contrast(1.05);
}

.journey-overlay {
  position: absolute;
  inset: 0;
}

.journey-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.34) 58%, rgba(8, 8, 8, 0.78)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.88));
}

.experience {
  display: grid;
  grid-template-columns: minmax(70px, 0.5fr) minmax(0, 1.4fr);
  gap: clamp(18px, 6vw, 90px);
  align-items: center;
  padding: 90px clamp(22px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, rgba(255, 122, 26, 0.25), transparent 45%);
  transition: opacity 400ms ease;
}

.experience.active::before {
  opacity: 1;
}

.number {
  position: relative;
  z-index: 1;
  color: rgba(247, 244, 238, 0.18);
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 950;
}

.experience-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.experience-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.5;
}

.experience-copy strong {
  display: block;
  margin: 26px 0 12px;
  color: var(--heat);
  font-size: clamp(22px, 3vw, 42px);
}

.experience-copy .price-note {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(247, 244, 238, 0.58);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.45;
}

.contact {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 470px);
  gap: clamp(28px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 34%, rgba(255, 122, 26, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(159, 183, 188, 0.12), transparent 28%),
    linear-gradient(135deg, #050505, #111 52%, #050505);
}

.quote-box {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(247, 244, 238, 0.26);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(18px);
}

label {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  font: inherit;
  resize: vertical;
}

.full {
  width: 100%;
}

@media (max-width: 720px) {
  .panel {
    min-height: 92svh;
  }

  .topbar {
    align-items: flex-start;
    padding: 18px 14px;
  }

  .sound-toggle {
    right: 14px;
    bottom: 14px;
    width: auto;
    min-height: 42px;
    padding: 0 14px;
  }

  .cursor-orbit {
    display: none;
  }

  .vinyl-widget {
    width: 68px;
    height: 68px;
    left: 14px;
    bottom: 14px;
  }

  .vinyl-hint {
    display: none;
  }

  .tap-ripple {
    display: block;
  }

  .scroll-energy {
    right: 8px;
    height: 40vh;
    opacity: 0.72;
  }

  .spark-layer {
    opacity: 0.32;
  }

  .sound-text {
    max-width: 70px;
    white-space: normal;
    line-height: 1.05;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding: 94px 14px 38px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 48px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(32px, 11vw, 50px);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 0.96;
  }

  .eyebrow,
  .kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .lead {
    font-size: 16px;
    line-height: 1.35;
  }

  .actions,
  .button,
  button {
    width: 100%;
  }

  .hero-frame {
    right: -12vw;
    top: 18vh;
    width: 72vw;
  }

  .manifest,
  .cinematic,
  .tunnel,
  .split,
  .journey-intro,
  .experience,
  .contact {
    padding: 78px 22px;
  }

  .ambient-video {
    height: 108%;
  }

  .manifest-grid p:last-child,
  .cinematic-copy p,
  .tunnel-copy p,
  .split-copy p,
  .journey-intro p,
  .contact p,
  .experience-copy p {
    font-size: 16px;
    line-height: 1.48;
  }

  .manifest-word {
    right: auto;
    left: -12px;
    bottom: 20px;
    font-size: 78px;
    white-space: normal;
  }

  .cinematic,
  .split {
    align-items: end;
  }

  .tunnel-video {
    height: 108%;
  }

  .number {
    align-self: end;
    font-size: 68px;
    line-height: 0.8;
  }

  .experience {
    gap: 22px;
    align-content: center;
  }

  .experience-copy strong {
    margin: 20px 0;
    font-size: 24px;
  }

  .reverse .split-copy {
    justify-self: start;
  }

  .contact {
    min-height: auto;
    padding-bottom: 116px;
  }

  .quote-box {
    padding: 18px;
  }

  input,
  textarea {
    font-size: 16px;
  }
}

@media (min-width: 721px) {
  .tap-ripple {
    display: none;
  }
}
