@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Sans:wght@400;500;600;700&display=swap");
/* line 6, app/assets/stylesheets/welcome.css.scss */
:root {
  --red:          #9e1a1a;
  --red-hover:    #841616;
  --red-glow:     rgba(158, 26, 26, 0.25);
  --red-subtle:   rgba(158, 26, 26, 0.12);
  --bg:           #0A0A0F;
  --surface:      #141419;
  --surface-2:    #1C1C24;
  --border:       rgba(255, 255, 255, 0.07);
  --border-red:   rgba(158, 26, 26, 0.35);
  --text:         #ffffff;
  --text-muted:   #9292a4;
  --text-dim:     #3a3a4a;
}

/* line 21, app/assets/stylesheets/welcome.css.scss */
* {
  font-family: 'Instrument Sans', -apple-system, system-ui, sans-serif;
}

/* line 25, app/assets/stylesheets/welcome.css.scss */
body, html {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* line 34, app/assets/stylesheets/welcome.css.scss */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(https://d2ml8qrcv8ha0o.cloudfront.net/%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

/* line 44, app/assets/stylesheets/welcome.css.scss */
a:link, a:visited {
  text-decoration: none;
}

/* line 49, app/assets/stylesheets/welcome.css.scss */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
  line-height: 1.3;
}

/* line 64, app/assets/stylesheets/welcome.css.scss */
.btn-primary .btn-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}

/* line 73, app/assets/stylesheets/welcome.css.scss */
.btn-primary:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* line 79, app/assets/stylesheets/welcome.css.scss */
.btn-primary:active {
  transform: translateY(0);
}

/* line 87, app/assets/stylesheets/welcome.css.scss */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 98, app/assets/stylesheets/welcome.css.scss */
.delay-1 {
  animation-delay: 0.12s;
}

/* line 98, app/assets/stylesheets/welcome.css.scss */
.delay-2 {
  animation-delay: 0.24s;
}

/* line 98, app/assets/stylesheets/welcome.css.scss */
.delay-3 {
  animation-delay: 0.36s;
}

/* line 98, app/assets/stylesheets/welcome.css.scss */
.delay-4 {
  animation-delay: 0.48s;
}

/* line 104, app/assets/stylesheets/welcome.css.scss */
section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* line 109, app/assets/stylesheets/welcome.css.scss */
.section-header {
  margin-bottom: 3.5rem;
}

/* line 113, app/assets/stylesheets/welcome.css.scss */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* line 122, app/assets/stylesheets/welcome.css.scss */
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* line 133, app/assets/stylesheets/welcome.css.scss */
.hero-section {
  position: relative;
  display: flex;
  align-items: stretch;
  background: radial-gradient(ellipse at 60% 30%, rgba(196, 30, 58, 0.08) 0%, var(--bg) 65%), var(--bg);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 144, app/assets/stylesheets/welcome.css.scss */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5rem 0 6rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 900px) {
  /* line 144, app/assets/stylesheets/welcome.css.scss */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 0 5rem;
    gap: 2.5rem;
  }
}

/* line 161, app/assets/stylesheets/welcome.css.scss */
.hero-content {
  flex: 1;
  min-width: 0;
}

/* line 166, app/assets/stylesheets/welcome.css.scss */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* line 176, app/assets/stylesheets/welcome.css.scss */
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 2.25rem;
}

@media (max-width: 900px) {
  /* line 176, app/assets/stylesheets/welcome.css.scss */
  .hero-sub {
    margin: 0 auto 2.25rem;
  }
}

/* line 188, app/assets/stylesheets/welcome.css.scss */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  /* line 188, app/assets/stylesheets/welcome.css.scss */
  .hero-actions {
    justify-content: center;
  }
}

/* line 199, app/assets/stylesheets/welcome.css.scss */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  /* line 199, app/assets/stylesheets/welcome.css.scss */
  .hero-social-proof {
    justify-content: center;
  }
}

/* line 209, app/assets/stylesheets/welcome.css.scss */
.sp-stars {
  color: #f5a623;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* line 215, app/assets/stylesheets/welcome.css.scss */
.sp-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* line 224, app/assets/stylesheets/welcome.css.scss */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  /* line 224, app/assets/stylesheets/welcome.css.scss */
  .hero-visual {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

/* line 236, app/assets/stylesheets/welcome.css.scss */
.phone-wrap {
  position: relative;
  width: 340px;
}

@media (max-width: 900px) {
  /* line 236, app/assets/stylesheets/welcome.css.scss */
  .phone-wrap {
    width: 88vw;
    max-width: 480px;
  }
}

/* line 246, app/assets/stylesheets/welcome.css.scss */
.phone-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.6));
}

/* line 253, app/assets/stylesheets/welcome.css.scss */
.phone-frame {
  width: 240px;
  height: 480px;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

/* line 265, app/assets/stylesheets/welcome.css.scss */
.phone-notch {
  display: none;
}

/* line 270, app/assets/stylesheets/welcome.css.scss */
.phone-screenshot {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}

/* line 279, app/assets/stylesheets/welcome.css.scss */
.app-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* line 287, app/assets/stylesheets/welcome.css.scss */
.app-city-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

/* line 295, app/assets/stylesheets/welcome.css.scss */
.app-header-line {
  height: 7px;
  background: var(--text-dim);
  border-radius: 4px;
  width: 80%;
}

/* line 302, app/assets/stylesheets/welcome.css.scss */
.app-header-line--short {
  width: 50%;
  height: 5px;
  background: var(--surface-2);
}

/* line 309, app/assets/stylesheets/welcome.css.scss */
.app-card {
  display: flex;
  gap: 10px;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--border);
}

/* line 318, app/assets/stylesheets/welcome.css.scss */
.app-card--featured {
  flex-direction: column;
  gap: 8px;
  border-color: var(--border-red);
}

/* line 324, app/assets/stylesheets/welcome.css.scss */
.app-card-img {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, #2a2a35, #1a1a22);
  border-radius: 6px;
  flex-shrink: 0;
}

/* line 332, app/assets/stylesheets/welcome.css.scss */
.app-card-img--sm {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* line 338, app/assets/stylesheets/welcome.css.scss */
.app-card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

/* line 347, app/assets/stylesheets/welcome.css.scss */
.app-card-title-line {
  height: 7px;
  background: var(--text-dim);
  border-radius: 4px;
  width: 85%;
}

/* line 354, app/assets/stylesheets/welcome.css.scss */
.app-card-title-line--med {
  width: 65%;
}

/* line 358, app/assets/stylesheets/welcome.css.scss */
.app-card-meta-line {
  height: 5px;
  background: #2a2a38;
  border-radius: 4px;
  width: 55%;
}

/* line 365, app/assets/stylesheets/welcome.css.scss */
.app-free-badge {
  display: inline-block;
  padding: 3px 8px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  width: -moz-fit-content;
  width: fit-content;
}

/* line 379, app/assets/stylesheets/welcome.css.scss */
.app-friends-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
}

/* line 386, app/assets/stylesheets/welcome.css.scss */
.app-friend-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-dim);
  border: 1.5px solid var(--surface);
  margin-left: -4px;
}

/* line 394, app/assets/stylesheets/welcome.css.scss */
.app-friend-dot:first-child {
  margin-left: 0;
}

/* line 397, app/assets/stylesheets/welcome.css.scss */
.app-friend-dot--red {
  background: var(--red-subtle);
  border-color: var(--red);
}

/* line 402, app/assets/stylesheets/welcome.css.scss */
.app-friends-text {
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

/* line 410, app/assets/stylesheets/welcome.css.scss */
.floating-notif {
  position: absolute;
  bottom: -16px;
  right: -40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 10px 14px;
  width: 190px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  /* line 410, app/assets/stylesheets/welcome.css.scss */
  .floating-notif {
    right: -20px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* line 435, app/assets/stylesheets/welcome.css.scss */
.notif-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* line 440, app/assets/stylesheets/welcome.css.scss */
.notif-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 446, app/assets/stylesheets/welcome.css.scss */
.notif-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text);
}

/* line 452, app/assets/stylesheets/welcome.css.scss */
.notif-sub {
  font-size: 0.5625rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* line 462, app/assets/stylesheets/welcome.css.scss */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  opacity: 0.12;
  padding: 0 12px;
  pointer-events: none;
}

/* line 476, app/assets/stylesheets/welcome.css.scss */
.wave-bar {
  flex: 1;
  max-width: 6px;
  background: var(--red);
  border-radius: 3px 3px 0 0;
  animation: wave-bounce 1.4s ease-in-out infinite;
}

/* line 484, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(1) {
  height: 45%;
  animation-delay: 0.04s;
}

/* line 485, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(2) {
  height: 75%;
  animation-delay: 0.08s;
}

/* line 486, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(3) {
  height: 35%;
  animation-delay: 0.11s;
}

/* line 487, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(4) {
  height: 60%;
  animation-delay: 0.15s;
}

/* line 488, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(5) {
  height: 80%;
  animation-delay: 0.19s;
}

/* line 489, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(6) {
  height: 40%;
  animation-delay: 0.23s;
}

/* line 490, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(7) {
  height: 70%;
  animation-delay: 0.27s;
}

/* line 491, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(8) {
  height: 55%;
  animation-delay: 0.30s;
}

/* line 492, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(9) {
  height: 85%;
  animation-delay: 0.34s;
}

/* line 493, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(10) {
  height: 45%;
  animation-delay: 0.38s;
}

/* line 494, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(11) {
  height: 65%;
  animation-delay: 0.42s;
}

/* line 495, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(12) {
  height: 50%;
  animation-delay: 0.46s;
}

/* line 496, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(13) {
  height: 75%;
  animation-delay: 0.49s;
}

/* line 497, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(14) {
  height: 40%;
  animation-delay: 0.53s;
}

/* line 498, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(15) {
  height: 60%;
  animation-delay: 0.57s;
}

/* line 499, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(16) {
  height: 80%;
  animation-delay: 0.61s;
}

/* line 500, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(17) {
  height: 35%;
  animation-delay: 0.65s;
}

/* line 501, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(18) {
  height: 70%;
  animation-delay: 0.68s;
}

/* line 502, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(19) {
  height: 55%;
  animation-delay: 0.72s;
}

/* line 503, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(20) {
  height: 45%;
  animation-delay: 0.76s;
}

/* line 504, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(21) {
  height: 75%;
  animation-delay: 0.80s;
}

/* line 505, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(22) {
  height: 60%;
  animation-delay: 0.84s;
}

/* line 506, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(23) {
  height: 40%;
  animation-delay: 0.87s;
}

/* line 507, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(24) {
  height: 85%;
  animation-delay: 0.91s;
}

/* line 508, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(25) {
  height: 50%;
  animation-delay: 0.95s;
}

/* line 509, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(26) {
  height: 65%;
  animation-delay: 0.99s;
}

/* line 510, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(27) {
  height: 45%;
  animation-delay: 1.03s;
}

/* line 511, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(28) {
  height: 70%;
  animation-delay: 1.06s;
}

/* line 512, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(29) {
  height: 55%;
  animation-delay: 1.10s;
}

/* line 513, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(30) {
  height: 80%;
  animation-delay: 1.14s;
}

/* line 514, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(31) {
  height: 40%;
  animation-delay: 1.18s;
}

/* line 515, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(32) {
  height: 60%;
  animation-delay: 1.22s;
}

/* line 516, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(33) {
  height: 75%;
  animation-delay: 1.25s;
}

/* line 517, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(34) {
  height: 35%;
  animation-delay: 1.29s;
}

/* line 518, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(35) {
  height: 65%;
  animation-delay: 1.33s;
}

/* line 519, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(36) {
  height: 50%;
  animation-delay: 1.37s;
}

/* line 520, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(37) {
  height: 80%;
  animation-delay: 1.41s;
}

/* line 521, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(38) {
  height: 45%;
  animation-delay: 1.44s;
}

/* line 522, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(39) {
  height: 70%;
  animation-delay: 1.48s;
}

/* line 523, app/assets/stylesheets/welcome.css.scss */
.wave-bar:nth-child(40) {
  height: 55%;
  animation-delay: 1.52s;
}

@keyframes wave-bounce {
  0%, 100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

/* line 533, app/assets/stylesheets/welcome.css.scss */
.features-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* line 539, app/assets/stylesheets/welcome.css.scss */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  /* line 539, app/assets/stylesheets/welcome.css.scss */
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* line 551, app/assets/stylesheets/welcome.css.scss */
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

/* line 561, app/assets/stylesheets/welcome.css.scss */
.feature-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}

/* line 566, app/assets/stylesheets/welcome.css.scss */
.feature-card.feature-card--accent {
  border-color: var(--border-red);
  background: linear-gradient(160deg, var(--bg) 60%, var(--red-subtle) 100%);
}

/* line 572, app/assets/stylesheets/welcome.css.scss */
.feature-screen {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

/* line 581, app/assets/stylesheets/welcome.css.scss */
.feature-screenshot {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}

/* line 589, app/assets/stylesheets/welcome.css.scss */
.feature-screenshot--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

/* line 594, app/assets/stylesheets/welcome.css.scss */
.feature-screen--notification {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

/* line 603, app/assets/stylesheets/welcome.css.scss */
.notif-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(52, 52, 56, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
}

/* line 615, app/assets/stylesheets/welcome.css.scss */
.notif-card--dim {
  opacity: 0.45;
}

/* line 619, app/assets/stylesheets/welcome.css.scss */
.notif-card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 1px;
}

/* line 628, app/assets/stylesheets/welcome.css.scss */
.notif-card-icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* line 635, app/assets/stylesheets/welcome.css.scss */
.notif-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

/* line 642, app/assets/stylesheets/welcome.css.scss */
.notif-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* line 649, app/assets/stylesheets/welcome.css.scss */
.notif-card-app {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(235, 235, 245, 0.55);
}

/* line 657, app/assets/stylesheets/welcome.css.scss */
.notif-card-time {
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* line 662, app/assets/stylesheets/welcome.css.scss */
.notif-card-title {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(235, 235, 245, 0.75);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 673, app/assets/stylesheets/welcome.css.scss */
.notif-card-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* line 680, app/assets/stylesheets/welcome.css.scss */
.feature-screen--claim {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* line 688, app/assets/stylesheets/welcome.css.scss */
.claim-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* line 695, app/assets/stylesheets/welcome.css.scss */
.claim-event-info {
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 702, app/assets/stylesheets/welcome.css.scss */
.claim-artist {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* line 709, app/assets/stylesheets/welcome.css.scss */
.claim-venue {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* line 714, app/assets/stylesheets/welcome.css.scss */
.claim-date-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e06070;
  width: -moz-fit-content;
  width: fit-content;
}

/* line 729, app/assets/stylesheets/welcome.css.scss */
.claim-divider {
  height: 1px;
  background: var(--border);
  margin: 0 16px;
}

/* line 735, app/assets/stylesheets/welcome.css.scss */
.claim-label {
  padding: 10px 16px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* line 743, app/assets/stylesheets/welcome.css.scss */
.claim-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* line 749, app/assets/stylesheets/welcome.css.scss */
.claim-btn-primary {
  flex: 1;
  height: 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: default;
}

/* line 762, app/assets/stylesheets/welcome.css.scss */
.claim-btn-secondary {
  height: 40px;
  padding: 0 18px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: default;
}

/* line 775, app/assets/stylesheets/welcome.css.scss */
.feature-screen--social {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

/* line 783, app/assets/stylesheets/welcome.css.scss */
.social-ui {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* line 794, app/assets/stylesheets/welcome.css.scss */
.social-show-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 12px;
}

/* line 801, app/assets/stylesheets/welcome.css.scss */
.social-show-art {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b1a2a, #c41e3a);
  flex-shrink: 0;
}

/* line 809, app/assets/stylesheets/welcome.css.scss */
.social-show-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* line 815, app/assets/stylesheets/welcome.css.scss */
.social-show-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

/* line 821, app/assets/stylesheets/welcome.css.scss */
.social-show-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* line 826, app/assets/stylesheets/welcome.css.scss */
.social-divider {
  height: 1px;
  background: var(--border);
}

/* line 831, app/assets/stylesheets/welcome.css.scss */
.social-friends-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 14px;
}

/* line 838, app/assets/stylesheets/welcome.css.scss */
.social-avatars {
  display: flex;
  align-items: center;
}

/* line 843, app/assets/stylesheets/welcome.css.scss */
.social-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 2px solid var(--surface-2);
  margin-left: -8px;
  flex-shrink: 0;
}

/* line 856, app/assets/stylesheets/welcome.css.scss */
.social-avatar:first-child {
  margin-left: 0;
}

/* line 859, app/assets/stylesheets/welcome.css.scss */
.social-avatar--1 {
  background: #c41e3a;
  color: #fff;
}

/* line 860, app/assets/stylesheets/welcome.css.scss */
.social-avatar--2 {
  background: #2a5298;
  color: #fff;
}

/* line 861, app/assets/stylesheets/welcome.css.scss */
.social-avatar--3 {
  background: #1a7a4a;
  color: #fff;
}

/* line 862, app/assets/stylesheets/welcome.css.scss */
.social-avatar--more {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: var(--border);
  font-size: 0.5625rem;
}

/* line 864, app/assets/stylesheets/welcome.css.scss */
.social-friend-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* line 870, app/assets/stylesheets/welcome.css.scss */
.social-friend-name {
  color: var(--text);
  font-weight: 600;
}

/* line 875, app/assets/stylesheets/welcome.css.scss */
.fs-row {
  height: 8px;
  background: var(--text-dim);
  border-radius: 4px;
  width: 80%;
}

/* line 882, app/assets/stylesheets/welcome.css.scss */
.fs-row--short {
  width: 50%;
  background: #252530;
}

/* line 884, app/assets/stylesheets/welcome.css.scss */
.fs-pill {
  height: 20px;
  width: 90px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 10px;
}

/* line 892, app/assets/stylesheets/welcome.css.scss */
.fs-ticket {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* line 899, app/assets/stylesheets/welcome.css.scss */
.fs-ticket-icon {
  font-size: 1.5rem;
}

/* line 903, app/assets/stylesheets/welcome.css.scss */
.fs-ticket-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* line 910, app/assets/stylesheets/welcome.css.scss */
.fs-enter-btn {
  height: 28px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  width: 100px;
}

/* line 925, app/assets/stylesheets/welcome.css.scss */
.fs-avatars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

/* line 931, app/assets/stylesheets/welcome.css.scss */
.fs-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text-dim);
  border: 2px solid var(--surface-2);
}

/* line 939, app/assets/stylesheets/welcome.css.scss */
.fs-avatar--red {
  background: var(--red-subtle);
  border-color: var(--red);
}

/* line 944, app/assets/stylesheets/welcome.css.scss */
.fs-friends-label {
  font-size: 0.5625rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
}

/* line 952, app/assets/stylesheets/welcome.css.scss */
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0;
}

/* line 960, app/assets/stylesheets/welcome.css.scss */
.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* line 970, app/assets/stylesheets/welcome.css.scss */
.cities-section {
  background: var(--bg);
}

/* line 974, app/assets/stylesheets/welcome.css.scss */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0;
}

/* line 982, app/assets/stylesheets/welcome.css.scss */
.city-chip {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease;
}

/* line 993, app/assets/stylesheets/welcome.css.scss */
.city-chip:hover {
  border-color: var(--red);
  color: var(--red);
}

/* line 999, app/assets/stylesheets/welcome.css.scss */
.city-request-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

/* line 1005, app/assets/stylesheets/welcome.css.scss */
.city-request-link:hover {
  color: var(--text);
}

/* line 1013, app/assets/stylesheets/welcome.css.scss */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
}

/* line 1019, app/assets/stylesheets/welcome.css.scss */
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* line 1027, app/assets/stylesheets/welcome.css.scss */
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

/* line 1035, app/assets/stylesheets/welcome.css.scss */
.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  /* line 1045, app/assets/stylesheets/welcome.css.scss */
  .hero-section {
    padding-top: 0;
    padding-bottom: 0;
  }
  /* line 1047, app/assets/stylesheets/welcome.css.scss */
  .phone-wrap {
    width: 88vw;
    max-width: 400px;
  }
  /* line 1048, app/assets/stylesheets/welcome.css.scss */
  .phone-frame {
    width: 220px;
    height: 440px;
  }
  /* line 1050, app/assets/stylesheets/welcome.css.scss */
  .floating-notif {
    display: none;
  }
  /* line 1052, app/assets/stylesheets/welcome.css.scss */
  section {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
}
