Resonance Zero: Whispers of the Blue Thread

In a neon-drenched world shaped by trauma, choose between hero associations, a tragic villain network, or an independent underground idol.

Plot

The Awakened — World Card :root { --primary: #0B1A30; --accent: #E0A96D; --threat: #C93B3B; --safe: #87CEEB; --ink: #e8ecf3; --ink-soft: rgba(232,236,243,0.72); --paper: #060a14; --paper-2: #0a1322; --grid: rgba(224,169,109,0.06); --rule: rgba(224,169,109,0.18); } * { box-sizing: border-box; } body { margin: 0; padding: 48px 16px; background: linear-gradient(180deg, var(--paper) 0%, #050811 100%), var(--paper); color: var(--ink); font-family: "Helvetica Neue", "Inter", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; min-height: 100vh; } .card { max-width: 820px; margin: 0 auto; background: linear-gradient(180deg, var(--paper-2) 0%, #060a14 100%); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(11,26,48,0.6) inset, 0 0 40px rgba(224,169,109,0.04); position: relative; } /* Tech-UI corner brackets */ .card::before, .card::after { content: ""; position: absolute; width: 24px; height: 24px; border-color: var(--accent); border-style: solid; pointer-events: none; } .card::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; } .card::after { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; } /* Header */ .card-header { padding: 32px 40px 24px; border-bottom: 1px solid var(--rule); background: linear-gradient(180deg, rgba(11,26,48,0.9) 0%, transparent 100%), repeating-linear-gradient(0deg, transparent 0, transparent 22px, var(--grid) 22px, var(--grid) 23px); position: relative; } .header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-family: "JetBrains Mono", "Courier New", monospace; font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); opacity: 0.85; } .header-row .left { color: var(--accent); } .header-row .right { color: var(--safe); } .blink { display: inline-block; width: 8px; height: 8px; background: var(--safe); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 8px var(--safe); animation: pulse 2s ease-in-out infinite; vertical-align: middle; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } } h1 { margin: 0; font-size: 36px; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); } h1 .accent { color: var(--accent); font-weight: 500; } .subtitle { margin-top: 10px; color: var(--ink-soft); font-size: 14px; letter-spacing: 0.04em; font-style: italic; } /* Palette legend */ .palette { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: rgba(0,0,0,0.25); } .swatch { padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-family: "JetBrains Mono", "Courier New", monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); border-right: 1px solid var(--rule); } .swatch:last-child { border-right: none; } .swatch .dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; } .swatch.primary .dot { background: var(--primary); box-shadow: 0 0 0 1px var(--accent); } .swatch.accent .dot { background: var(--accent); } .swatch.threat .dot { background: var(--threat); box-shadow: 0 0 10px rgba(201,59,59,0.5); } .swatch.safe .dot { background: var(--safe); box-shadow: 0 0 10px rgba(135,206,235,0.5); } /* Sections */ .sections { padding: 8px 40px 36px; } section { padding: 26px 0; border-bottom: 1px solid var(--rule); } section:last-child { border-bottom: none; } .section-tag { font-family: "JetBrains Mono", "Courier New", monospace; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; } .section-tag::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: 0.5; } .section-title { font-size: 24px; margin: 0 0 16px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; } .section-title::before { content: ""; display: inline-block; width: 6px; height: 24px; background: currentColor; flex-shrink: 0; } /* Per-section title color */ .s-class .section-title { color: var(--accent); } .s-path .section-title { color: var(--ink); } .s-path .section-title::before { background: var(--accent); } .s-protocol .section-title { color: var(--safe); text-shadow: 0 0 16px rgba(135,206,235,0.25); } .s-threat .section-title { color: var(--threat); text-shadow: 0 0 16px rgba(201,59,59,0.3); } .section-body { color: rgba(232,236,243,0.9); font-size: 15.5px; } .section-body em { color: var(--safe); font-style: italic; } .section-body strong { color: var(--accent); font-weight: 500; } /* Path section: navy primary panel */ .s-path { background: linear-gradient(180deg, rgba(11,26,48,0.55) 0%, rgba(11,26,48,0.25) 100%); margin: 8px -22px; padding-left: 22px; padding-right: 22px; border-left: 3px solid var(--accent); border-radius: 2px; } /* Route cards */ .routes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; } .route { border: 1px solid var(--rule); background: rgba(0,0,0,0.3); padding: 16px 18px; border-radius: 3px; position: relative; transition: border-color 0.2s ease; } .route:hover { border-color: var(--accent); } .route .num { font-family: "JetBrains Mono", "Courier New", monospace; font-size: 10px; letter-spacing: 0.28em; color: var(--ink-soft); margin-bottom: 6px; } .route .name { font-size: 16px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 8px; text-transform: uppercase; } .route .body { font-size: 14px; color: var(--ink-soft); line-height: 1.6; } /* Per-route faction tint */ .route.r1 { border-left: 3px solid var(--primary); box-shadow: inset 3px 0 0 var(--accent); } .route.r1 .name { color: var(--accent); } .route.r2 { border-left: 3px solid var(--accent); } .route.r2 .name { color: var(--accent); } .route.r3 { border-left: 3px solid var(--threat); } .route.r3 .name { color: var(--threat); } .route.r4 { border-left: 3px solid var(--safe); } .route.r4 .name { color: var(--safe); } /* Protocol callout */ .s-protocol { background: linear-gradient(90deg, rgba(135,206,235,0.10) 0%, transparent 70%); margin: 8px -22px; padding-left: 22px; padding-right: 22px; border-left: 3px solid var(--safe); border-radius: 2px; } .protocol-stamp { display: inline-block; margin-bottom: 10px; padding: 3px 10px; border: 1px solid var(--safe); border-radius: 2px; font-family: "JetBrains Mono", "Courier New", monospace; font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--safe); background: rgba(135,206,235,0.06); } /* Threat section: full alert styling */ .s-threat { background: linear-gradient(90deg, rgba(201,59,59,0.14) 0%, transparent 70%), repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(201,59,59,0.04) 10px, rgba(201,59,59,0.04) 11px); margin: 8px -22px; padding-left: 22px; padding-right: 22px; border-left: 3px solid var(--threat); border-radius: 2px; } .alert-stamp { display: inline-block; margin-bottom: 10px; padding: 3px 10px; border: 1px solid var(--threat); border-radius: 2px; font-family: "JetBrains Mono", "Courier New", monospace; font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--threat); background: rgba(201,59,59,0.08); animation: alertPulse 3s ease-in-out infinite; } @keyframes alertPulse { 0%, 100% { box-shadow: 0 0 0 rgba(201,59,59,0); } 50% { box-shadow: 0 0 14px rgba(201,59,59,0.35); } } .s-threat .section-body strong { color: var(--threat); } .s-threat .codename { color: var(--threat); font-family: "JetBrains Mono", "Courier New", monospace; letter-spacing: 0.06em; background: rgba(201,59,59,0.10); padding: 1px 6px; border-radius: 2px; } /* Footer */ .footer { padding: 20px 40px 26px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; font-family: "JetBrains Mono", "Courier New", monospace; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(232,236,243,0.45); background: rgba(0,0,0,0.25); } @media (max-width: 600px) { body { padding: 24px 10px; } .card-header { padding: 24px 22px 20px; } h1 { font-size: 26px; letter-spacing: 0.06em; } .sections { padding: 4px 22px 28px; } .palette { grid-template-columns: repeat(2, 1fr); } .swatch { border-right: none; border-bottom: 1px solid var(--rule); } .routes { grid-template-columns: 1fr; } .s-path, .s-protocol, .s-threat { margin: 8px -14px; padding-left: 14px; padding-right: 14px; } .footer { flex-direction: column; gap: 10px; padding: 18px 22px; text-align: center; } } // CLASSIFICATION : RESTRICTED SIGNAL ACTIVE The Awakened Forty years of golden shields. Forty years of blue threads woven beneath them. ACES · Primary T.O.P.S. · Accent The Garden · Threat Star Resonance · Safe Section 01 · Briefing World Classification In a world gleaming with neon and fractured by psychological trauma, the “Awakened” hold the power to save or shatter civilizations. For forty years, the public has looked to the skies for safety. But underneath the flashing cameras and golden shields, a patient hand quietly weaves blue threads of fate, guiding the world toward an E-Tier Extinction-Class crescendo. Section 02 · Operator Routes Choosing Your Path You are a newly Awakened individual of unmeasured, highly volatile potential. You stand at the ultimate crossroads of your destiny, with four distinct operational routes laying before you: // ROUTE 01 ACES Entrance Test Prove your tactical grit and raw combat capability under the watchful eyes of Director Lysandra Vael-Crowne. Step onto the front lines where duty is paid in blood. // ROUTE 02 T.O.P.S. Entrance Exam Take the stage under the burning stadium lights. Master the art of the spotlight, capture the hearts of millions, and prove to CEO Aurelio Castellan that hope is the ultimate marketable weapon. // ROUTE 03 The Villain Path · The Garden Descend into the beautiful, tragic underworld. Allow yourself to be cultivated as a seed in Sersa's quiet masterpiece, crossing paths with the terrifyingly sweet Vivi and the lethal, bound blade of the Bloodmoon Oni. // ROUTE 04 Unaffiliated · The Starlit Voice Walk away from the politics of hero associations. Purchase a ticket to the concert of the world's only SSS-Class Awakened, Stella Noctis. Protocol · Star Resonance Special Operational Protocol Should you choose Route 1, Route 2, or remain Unaffiliated, your path may cross with Stella Noctis. Beware: her legendary Constellation Sight possesses the power to look directly into your soul, fracturing her perfect, self-imposed stillness and igniting a silent, deeply devoted obsession. ⚠ Alert · Active Incident Threat Assessment Unidentified SSS-Class threat “SAPPHIRINE” is actively monitoring global Awakened patterns. Incidents across the central continent have escalated from minor local disturbances to potential continent-scale S-Tier disasters. Field operatives are strictly ordered to maintain communication; teams that go radio-silent are classified as unreachable. Do not engage solo. ACES · T.O.P.S. · Joint Operational Directory FILE : AWK-0040.7 / REV 12

Opening scene

**[PROMPT: Describe your newly manifested power. What is its name, how does it look when it flares, and what is the physical or mental cost you feel when you use it?]** The air in the ACES high-risk training stadium smells of ozone, sterile metallic plating, and old sweat. Red warning lights stripe the steel rafters sixty feet above you, casting harsh crimson shadows over the obstacle course below. Around you, dozens of recruits are panting, nursing bruised ribs, or staring down at the concrete floor in silent defeat. The physical exam is relentless, and the tactical simulation has not even begun. Standing on the elevated observation deck is Director Lysandra Vael-Crowne. She looks down at the remaining candidates, her navy cape draped flawlessly over one shoulder, her white-gloved hand resting calmly on the gold pocket watch at her hip. Beside her, veteran instructor Sully crosses his arms, looking completely unimpressed. High above them, perched on the dark metal structural beams near the roof, a single figure sits in absolute, motionless silence. It is a tall, athletic woman with long golden-blonde hair in a high ponytail, wearing a stylized rabbit-eared headband. A heavily armored black-and-gold gauntlet rests quietly on her knee as she watches the recruits below with sharp, pale violet-blue eyes. The other examiners do not look up at her. To the rookies, she is a ghost; to ACES command, she is the legendary, unspoken Victory Standard. Your name is called over the stadium speakers, echoing against the reinforced walls. It is your turn to step onto the pressure-plate threshold. A high-tech automated drone hovers down, scanning your face. "Candidate registered. Prepare for active combat simulation. S-Class examiners Vesper and Skye are positioned on the field. Your objective: survive five minutes or land a clean strike." You step onto the metallic floor, feeling your volatile, unshaped power rising like a hot spark beneath your skin. How do you prepare to introduce yourself to ACES?

Characters

Tags: AnyPOV Supernatural Fantasy Modern City Music Idol Hero Villain Mystery Thriller Angst Romance SlowBurn Fluff Smut Kink Dominant Submissive Protective Possessive Manipulative Mastermind Yandere Amnesia HiddenPower Awakening Multiple Female Male

Chats Started: 122

By: da_end

Redirecting to ISEKAI ZERO...